|
| 1 | +<?xml version="1.0"?> |
| 2 | +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 3 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <artifactId>kafka-connect-transform</artifactId> |
| 7 | + <version>1.0.0</version> |
| 8 | + <name>kafka-connect-transform</name> |
| 9 | + <url>https://github.com/tilakpatidar/kafka-connect-transform</url> |
| 10 | + <inceptionYear>2021</inceptionYear> |
| 11 | + <groupId>com.github.tilakpatidar.kafka.connect</groupId> |
| 12 | + <description>Common transformations for Kafka Connect.</description> |
| 13 | + <repositories> |
| 14 | + <repository> |
| 15 | + <id>confluent</id> |
| 16 | + <url>https://packages.confluent.io/maven/</url> |
| 17 | + </repository> |
| 18 | + <repository> |
| 19 | + <id>maven-central</id> |
| 20 | + <url>https://repo1.maven.org/maven2/</url> |
| 21 | + </repository> |
| 22 | + </repositories> |
| 23 | + <licenses> |
| 24 | + <license> |
| 25 | + <name>MIT License</name> |
| 26 | + <url>https://github.com/tilakpatidar/kafka-connect-transform/LICENSE</url> |
| 27 | + <distribution>repo</distribution> |
| 28 | + </license> |
| 29 | + </licenses> |
| 30 | + <developers> |
| 31 | + <developer> |
| 32 | + <id>tilakpatidar</id> |
| 33 | + <name>Tilak Patidar</name> |
| 34 | + <url>https://github.com/tilakpatidar</url> |
| 35 | + <roles> |
| 36 | + <role>Committer</role> |
| 37 | + </roles> |
| 38 | + </developer> |
| 39 | + </developers> |
| 40 | + <scm> |
| 41 | + <connection>scm:git:https://github.com/tilakpatidar/kafka-connect-transform.git</connection> |
| 42 | + <developerConnection>scm:git:git@github.com:tilakpatidar/kafka-connect-transform.git</developerConnection> |
| 43 | + <url>https://github.com/tilakpatidar/kafka-connect-transform</url> |
| 44 | + </scm> |
| 45 | + <issueManagement> |
| 46 | + <system>github</system> |
| 47 | + <url>https://github.com/tilakpatidar/kafka-connect-transform/issues</url> |
| 48 | + </issueManagement> |
| 49 | + <dependencies> |
| 50 | + <!-- https://mvnrepository.com/artifact/io.confluent/kafka-connect-storage-partitioner --> |
| 51 | + <dependency> |
| 52 | + <groupId>io.confluent</groupId> |
| 53 | + <artifactId>kafka-connect-storage-partitioner</artifactId> |
| 54 | + <version>10.2.4</version> |
| 55 | + </dependency> |
| 56 | + |
| 57 | + <!-- https://mvnrepository.com/artifact/org.apache.kafka/connect-api --> |
| 58 | + <dependency> |
| 59 | + <groupId>org.apache.kafka</groupId> |
| 60 | + <artifactId>connect-api</artifactId> |
| 61 | + <version>3.0.0</version> |
| 62 | + </dependency> |
| 63 | + |
| 64 | + <!-- https://mvnrepository.com/artifact/junit/junit --> |
| 65 | + <dependency> |
| 66 | + <groupId>junit</groupId> |
| 67 | + <artifactId>junit</artifactId> |
| 68 | + <version>4.13.1</version> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + |
| 72 | + </dependencies> |
| 73 | + <build> |
| 74 | + <plugins> |
| 75 | + <plugin> |
| 76 | + <groupId>io.confluent</groupId> |
| 77 | + <artifactId>kafka-connect-maven-plugin</artifactId> |
| 78 | + <version>0.12.0</version> |
| 79 | + <configuration> |
| 80 | + <confluentControlCenterIntegration>true</confluentControlCenterIntegration> |
| 81 | + <documentationUrl>https://github.com/tilakpatidar/kafka-connect-transform</documentationUrl> |
| 82 | + <componentTypes> |
| 83 | + <componentType>transform</componentType> |
| 84 | + </componentTypes> |
| 85 | + <title>Kafka Connect Transformations</title> |
| 86 | + <supportUrl>${project.issueManagement.url}</supportUrl> |
| 87 | + <supportSummary>Support provided through community involvement.</supportSummary> |
| 88 | + <ownerName>Tilak Patidar</ownerName> |
| 89 | + <ownerUsername>tilakpatidar</ownerUsername> |
| 90 | + </configuration> |
| 91 | + </plugin> |
| 92 | + <plugin> |
| 93 | + <groupId>org.apache.maven.plugins</groupId> |
| 94 | + <artifactId>maven-compiler-plugin</artifactId> |
| 95 | + <version>3.8.1</version> |
| 96 | + <configuration> |
| 97 | + <source>8</source> |
| 98 | + <target>8</target> |
| 99 | + </configuration> |
| 100 | + </plugin> |
| 101 | + <plugin> |
| 102 | + <groupId>org.apache.maven.plugins</groupId> |
| 103 | + <artifactId>maven-assembly-plugin</artifactId> |
| 104 | + <version>3.3.0</version> |
| 105 | + <configuration> |
| 106 | + <descriptorRefs> |
| 107 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 108 | + </descriptorRefs> |
| 109 | + </configuration> |
| 110 | + </plugin> |
| 111 | + </plugins> |
| 112 | + </build> |
| 113 | +</project> |
0 commit comments