|
23 | 23 | <version>0.3-SNAPSHOT</version>
|
24 | 24 | <name>kafka-connect-mq-source</name>
|
25 | 25 | <organization>
|
26 |
| - <name>IBM Corporation</name> |
27 |
| - <url>http://ibm.com</url> |
| 26 | + <name>IBM Corporation</name> |
| 27 | + <url>http://ibm.com</url> |
28 | 28 | </organization>
|
29 | 29 | <url>http://ibm.com</url>
|
30 | 30 | <description>
|
31 | 31 | A Kafka Connect connector for copying data from IBM MQ into Apache Kafka.
|
32 | 32 | </description>
|
33 | 33 | <licenses>
|
34 |
| - <license> |
35 |
| - <name>Apache License 2.0</name> |
36 |
| - <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> |
37 |
| - <distribution>repo</distribution> |
38 |
| - </license> |
| 34 | + <license> |
| 35 | + <name>Apache License 2.0</name> |
| 36 | + <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> |
| 37 | + <distribution>repo</distribution> |
| 38 | + </license> |
39 | 39 | </licenses>
|
| 40 | + <properties> |
| 41 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 42 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 43 | + </properties> |
40 | 44 | <dependencies>
|
41 | 45 | <dependency>
|
42 |
| - <groupId>org.apache.kafka</groupId> |
43 |
| - <artifactId>connect-api</artifactId> |
44 |
| - <version>0.11.0.0</version> |
45 |
| - <scope>provided</scope> |
46 |
| - </dependency> |
| 46 | + <groupId>org.apache.kafka</groupId> |
| 47 | + <artifactId>connect-api</artifactId> |
| 48 | + <version>0.11.0.0</version> |
| 49 | + <scope>provided</scope> |
| 50 | + </dependency> |
47 | 51 | <dependency>
|
48 |
| - <groupId>org.apache.kafka</groupId> |
49 |
| - <artifactId>connect-json</artifactId> |
50 |
| - <version>0.11.0.0</version> |
51 |
| - <scope>provided</scope> |
| 52 | + <groupId>org.apache.kafka</groupId> |
| 53 | + <artifactId>connect-json</artifactId> |
| 54 | + <version>0.11.0.0</version> |
| 55 | + <scope>provided</scope> |
52 | 56 | </dependency>
|
53 | 57 |
|
54 | 58 | <dependency>
|
|
69 | 73 | <scope>test</scope>
|
70 | 74 | </dependency>
|
71 | 75 | <dependency>
|
72 |
| - <groupId>org.slf4j</groupId> |
73 |
| - <artifactId>slf4j-log4j12</artifactId> |
74 |
| - <version>1.7.25</version> |
75 |
| - <scope>test</scope> |
| 76 | + <groupId>org.slf4j</groupId> |
| 77 | + <artifactId>slf4j-log4j12</artifactId> |
| 78 | + <version>1.7.25</version> |
| 79 | + <scope>test</scope> |
76 | 80 | </dependency>
|
77 | 81 | </dependencies>
|
78 | 82 |
|
|
88 | 92 | </plugin>
|
89 | 93 | <plugin>
|
90 | 94 | <artifactId>maven-assembly-plugin</artifactId>
|
91 |
| - <executions> |
92 |
| - <execution> |
93 |
| - <phase>package</phase> |
94 |
| - <goals> |
95 |
| - <goal>single</goal> |
96 |
| - </goals> |
97 |
| - </execution> |
98 |
| - </executions> |
99 |
| - <configuration> |
100 |
| - <descriptorRefs> |
101 |
| - <descriptorRef>jar-with-dependencies</descriptorRef> |
102 |
| - </descriptorRefs> |
103 |
| - </configuration> |
| 95 | + <version>3.1.0</version> |
| 96 | + <executions> |
| 97 | + <execution> |
| 98 | + <phase>package</phase> |
| 99 | + <goals> |
| 100 | + <goal>single</goal> |
| 101 | + </goals> |
| 102 | + </execution> |
| 103 | + </executions> |
| 104 | + <configuration> |
| 105 | + <descriptorRefs> |
| 106 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 107 | + </descriptorRefs> |
| 108 | + </configuration> |
104 | 109 | </plugin>
|
105 | 110 | </plugins>
|
106 | 111 | </build>
|
|
0 commit comments