| Group ID: |
com.github.jcustenborder.kafka.connect |
| Artifact ID: |
kafka-connect-xml |
| Version: |
0.0.1.2 |
| Last modified: |
21.03.2018 04:14 |
| Packaging: |
jar |
| Name: |
kafka-connect-xml |
| URL: |
https://github.com/jcustenborder/xjc-kafka-connect-plugin |
|
|
| Size: |
14.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/com/github/jcustenborder/kafka/connect/kafka-connect-xml/0.0.1.2/kafka-connect-xml-0.0.1.2.jar |
| POM: |
Show
hide
<?xml version="1.0"?>
<!--
Copyright © 2017 Jeremy Custenborder (jcustenborder@gmail.com)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.jcustenborder.kafka.connect</groupId>
<artifactId>kafka-connect-xml-parent</artifactId>
<version>0.0.1.2</version>
</parent>
<artifactId>kafka-connect-xml</artifactId>
<version>0.0.1.2</version>
<name>kafka-connect-xml</name>
<url>https://github.com/jcustenborder/xjc-kafka-connect-plugin</url>
<inceptionYear>2017</inceptionYear>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Jeremy Custenborder</name>
<email>jeremy@confluent.io</email>
<url>https://github.com/jcustenborder</url>
<roles>
<role>maintainer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/jcustenborder/xjc-kafka-connect-plugin.git</connection>
<developerConnection>scm:git:git@github.com:jcustenborder/xjc-kafka-connect-plugin.git</developerConnection>
<url>https://github.com/jcustenborder/xjc-kafka-connect-plugin</url>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/jcustenborder/xjc-kafka-connect-plugin/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.21</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-core</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-xjc</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>connect-api</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.13.3</version>
<executions>
<!-- Generate Java Classes from Schema Files -->
<execution>
<id>books</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<verbose>true</verbose>
<episode>false</episode>
<debug>false</debug>
<schemaDirectory>src/test/resources/com/github/jcustenborder/kafka/connect/xml</schemaDirectory>
<schemaIncludes>
<include>*.xsd</include>
</schemaIncludes>
<generateDirectory>target/generated-test-sources/books.xsd</generateDirectory>
<!--<forceRegenerate>true</forceRegenerate>-->
<markGenerated>false</markGenerated>
<args>
<arg>-Xconnect</arg>
</args>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics</artifactId>
<version>0.11.1</version>
</plugin>
<plugin>
<groupId>${project.groupId}</groupId>
<artifactId>xjc-kafka-connect-plugin</artifactId>
<version>${project.version}</version>
</plugin>
</plugins>
</configuration>
</execution>
<!--<execution>-->
<!--<id>cd-list</id>-->
<!--<goals>-->
<!--<goal>generate</goal>-->
<!--</goals>-->
<!--<configuration>-->
<!--<schemaIncludes>-->
<!--<include>cd-list.xsd</include>-->
<!--</schemaIncludes>-->
<!--<generateDirectory>target/generated-test-sources/cd-list.xsd</generateDirectory>-->
<!--</configuration>-->
<!--</execution>-->
<!--<execution>-->
<!--<id>inventory</id>-->
<!--<goals>-->
<!--<goal>generate</goal>-->
<!--</goals>-->
<!--<configuration>-->
<!--<schemaIncludes>-->
<!--<include>InventoryV2.0.0.xsd</include>-->
<!--</schemaIncludes>-->
<!--<generateDirectory>target/generated-test-sources/InventoryV2.0.0.xsd</generateDirectory>-->
<!--</configuration>-->
<!--</execution>-->
<!--<execution>-->
<!--<id>recipe</id>-->
<!--<goals>-->
<!--<goal>generate</goal>-->
<!--</goals>-->
<!--<configuration>-->
<!--<schemaIncludes>-->
<!--<include>recipe.xsd</include>-->
<!--</schemaIncludes>-->
<!--<generateDirectory>target/generated-test-sources/recipe.xsd</generateDirectory>-->
<!--</configuration>-->
<!--</execution>-->
<!--<execution>-->
<!--<id>shiporder</id>-->
<!--<goals>-->
<!--<goal>generate</goal>-->
<!--</goals>-->
<!--<configuration>-->
<!--<schemaIncludes>-->
<!--<include>shiporder.xsd</include>-->
<!--</schemaIncludes>-->
<!--<generateDirectory>target/generated-test-sources/shiporder.xsd</generateDirectory>-->
<!--</configuration>-->
<!--</execution>-->
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Maven: |
<dependency>
<groupId>com.github.jcustenborder.kafka.connect</groupId>
<artifactId>kafka-connect-xml</artifactId>
<version>0.0.1.2</version>
</dependency>
|
| Gradle: |
com.github.jcustenborder.kafka.connect:kafka-connect-xml:0.0.1.2 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
|
| Dependency Graph: |
Show
Less
More
|