-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·103 lines (97 loc) · 4.01 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.yokota</groupId>
<artifactId>kafka-connect-jsonata</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>kafka-connect-jsonata</name>
<description>Kafka Connect JSONata Transform</description>
<url>https://github.com/rayokota/kafka-connect-jsonata</url>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https:/github.com/rayokota/kafka-connect-jsonata/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Robert Yokota</name>
<url>https://github.com/rayokota</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/rayokota/kafka-connect-jsonata.git</connection>
<developerConnection>scm:git:git@github.com:rayokota/kafka-connect-jsonata.git</developerConnection>
<url>https://github.com/rayokota/kafka-connect-jsonata</url>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/rayokota/kafka-connect-jsonata/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>connect-api</artifactId>
<version>3.6.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.ibm.jsonata4java</groupId>
<artifactId>JSONata4Java</artifactId>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.2.0-jre</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-maven-plugin</artifactId>
<version>0.12.0</version>
<executions>
<execution>
<goals>
<goal>kafka-connect</goal>
</goals>
<configuration>
<componentTypes>
<componentType>transform</componentType>
</componentTypes>
<ownerUsername>rayokota</ownerUsername>
<title>Kafka Connect JSONata Transform</title>
<sourceUrl>https://github.com/rayokota/kafka-connect-jsonata</sourceUrl>
<supportUrl>${pom.issueManagement.url}</supportUrl>
<supportSummary>Support provided through community involvement.</supportSummary>
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
<tags>
<tag>JSONata</tag>
<tag>Transformation</tag>
</tags>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>
</project>