|
14 | 14 | * See the License for the specific language governing permissions and
|
15 | 15 | * limitations under the License.
|
16 | 16 | -->
|
17 |
| -<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
18 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
19 |
| - <modelVersion>4.0.0</modelVersion> |
20 |
| - <groupId>com.ibm.eventstreams.connect</groupId> |
21 |
| - <artifactId>kafka-connect-mq-source</artifactId> |
22 |
| - <packaging>jar</packaging> |
23 |
| - <version>1.2.0-SNAPSHOT</version> |
24 |
| - <name>kafka-connect-mq-source</name> |
| 17 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 19 | + <modelVersion>4.0.0</modelVersion> |
| 20 | + <groupId>com.ibm.eventstreams.connect</groupId> |
| 21 | + <artifactId>kafka-connect-mq-source</artifactId> |
| 22 | + <packaging>jar</packaging> |
| 23 | + <version>1.2.0-SNAPSHOT</version> |
| 24 | + <name>kafka-connect-mq-source</name> |
25 | 25 | <organization>
|
26 |
| - <name>IBM Corporation</name> |
27 |
| - <url>http://ibm.com</url> |
28 |
| - </organization> |
| 26 | + <name>IBM Corporation</name> |
29 | 27 | <url>http://ibm.com</url>
|
30 |
| - <description> |
31 |
| - A Kafka Connect connector for copying data from IBM MQ into Apache Kafka. |
32 |
| - </description> |
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> |
39 |
| - </licenses> |
40 |
| - <properties> |
41 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
42 |
| - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
43 |
| - </properties> |
44 |
| - <dependencies> |
45 |
| - <dependency> |
46 |
| - <groupId>org.apache.kafka</groupId> |
47 |
| - <artifactId>connect-api</artifactId> |
48 |
| - <version>2.3.0</version> |
49 |
| - <scope>provided</scope> |
50 |
| - </dependency> |
51 |
| - <dependency> |
52 |
| - <groupId>org.apache.kafka</groupId> |
53 |
| - <artifactId>connect-json</artifactId> |
54 |
| - <version>2.3.0</version> |
55 |
| - <scope>provided</scope> |
56 |
| - </dependency> |
| 28 | + </organization> |
| 29 | + <url>http://ibm.com</url> |
| 30 | + <description> |
| 31 | + A Kafka Connect connector for copying data from IBM MQ into Apache Kafka. |
| 32 | + </description> |
| 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> |
| 39 | + </licenses> |
| 40 | + <properties> |
| 41 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 42 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 43 | + </properties> |
| 44 | + <dependencies> |
| 45 | + <dependency> |
| 46 | + <groupId>org.apache.kafka</groupId> |
| 47 | + <artifactId>connect-api</artifactId> |
| 48 | + <version>2.3.0</version> |
| 49 | + <scope>provided</scope> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.apache.kafka</groupId> |
| 53 | + <artifactId>connect-json</artifactId> |
| 54 | + <version>2.3.0</version> |
| 55 | + <scope>provided</scope> |
| 56 | + </dependency> |
57 | 57 |
|
58 |
| - <dependency> |
59 |
| - <groupId>javax.jms</groupId> |
60 |
| - <artifactId>javax.jms-api</artifactId> |
61 |
| - <version>2.0.1</version> |
62 |
| - </dependency> |
63 |
| - <dependency> |
64 |
| - <groupId>com.ibm.mq</groupId> |
65 |
| - <artifactId>com.ibm.mq.allclient</artifactId> |
66 |
| - <version>9.1.1.0</version> |
67 |
| - </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>javax.jms</groupId> |
| 60 | + <artifactId>javax.jms-api</artifactId> |
| 61 | + <version>2.0.1</version> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>com.ibm.mq</groupId> |
| 65 | + <artifactId>com.ibm.mq.allclient</artifactId> |
| 66 | + <version>9.1.1.0</version> |
| 67 | + </dependency> |
68 | 68 |
|
69 |
| - <dependency> |
70 |
| - <groupId>junit</groupId> |
71 |
| - <artifactId>junit</artifactId> |
72 |
| - <version>4.12</version> |
73 |
| - <scope>test</scope> |
74 |
| - </dependency> |
75 |
| - <!-- https://mvnrepository.com/artifact/org.mockito/mockito-core --> |
76 |
| - <dependency> |
77 |
| - <groupId>org.mockito</groupId> |
78 |
| - <artifactId>mockito-core</artifactId> |
79 |
| - <version>3.1.0</version> |
80 |
| - <scope>test</scope> |
81 |
| - </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>junit</groupId> |
| 71 | + <artifactId>junit</artifactId> |
| 72 | + <version>4.12</version> |
| 73 | + <scope>test</scope> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>org.mockito</groupId> |
| 77 | + <artifactId>mockito-core</artifactId> |
| 78 | + <version>3.1.0</version> |
| 79 | + <scope>test</scope> |
| 80 | + </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>org.slf4j</groupId> |
| 83 | + <artifactId>slf4j-log4j12</artifactId> |
| 84 | + <version>1.7.25</version> |
| 85 | + <scope>test</scope> |
| 86 | + </dependency> |
| 87 | + </dependencies> |
82 | 88 |
|
83 |
| - <dependency> |
84 |
| - <groupId>org.slf4j</groupId> |
85 |
| - <artifactId>slf4j-log4j12</artifactId> |
86 |
| - <version>1.7.25</version> |
87 |
| - <scope>test</scope> |
88 |
| - </dependency> |
89 |
| - </dependencies> |
90 |
| - |
91 |
| - <build> |
92 |
| - <plugins> |
93 |
| - <plugin> |
94 |
| - <artifactId>maven-compiler-plugin</artifactId> |
95 |
| - <version>3.1</version> |
96 |
| - <configuration> |
97 |
| - <source>1.8</source> |
98 |
| - <target>1.8</target> |
99 |
| - </configuration> |
100 |
| - </plugin> |
101 |
| - <plugin> |
102 |
| - <artifactId>maven-surefire-plugin</artifactId> |
103 |
| - <version>3.0.0-M1</version> |
104 |
| - <configuration> |
105 |
| - <systemPropertyVariables> |
106 |
| - <connectorVersion>${project.version}</connectorVersion> |
107 |
| - </systemPropertyVariables> |
108 |
| - </configuration> |
109 |
| - </plugin> |
110 |
| - <plugin> |
111 |
| - <artifactId>maven-assembly-plugin</artifactId> |
112 |
| - <version>3.1.1</version> |
113 |
| - <executions> |
114 |
| - <execution> |
115 |
| - <phase>package</phase> |
116 |
| - <goals> |
117 |
| - <goal>single</goal> |
118 |
| - </goals> |
119 |
| - </execution> |
120 |
| - </executions> |
121 |
| - <configuration> |
122 |
| - <descriptors> |
123 |
| - <descriptor>src/assembly/package.xml</descriptor> |
124 |
| - </descriptors> |
125 |
| - </configuration> |
126 |
| - </plugin> |
127 |
| - </plugins> |
128 |
| - </build> |
| 89 | + <build> |
| 90 | + <plugins> |
| 91 | + <plugin> |
| 92 | + <artifactId>maven-compiler-plugin</artifactId> |
| 93 | + <version>3.1</version> |
| 94 | + <configuration> |
| 95 | + <source>1.8</source> |
| 96 | + <target>1.8</target> |
| 97 | + </configuration> |
| 98 | + </plugin> |
| 99 | + <plugin> |
| 100 | + <artifactId>maven-surefire-plugin</artifactId> |
| 101 | + <version>3.0.0-M1</version> |
| 102 | + <configuration> |
| 103 | + <systemPropertyVariables> |
| 104 | + <connectorVersion>${project.version}</connectorVersion> |
| 105 | + </systemPropertyVariables> |
| 106 | + </configuration> |
| 107 | + </plugin> |
| 108 | + <plugin> |
| 109 | + <artifactId>maven-assembly-plugin</artifactId> |
| 110 | + <version>3.1.1</version> |
| 111 | + <executions> |
| 112 | + <execution> |
| 113 | + <phase>package</phase> |
| 114 | + <goals> |
| 115 | + <goal>single</goal> |
| 116 | + </goals> |
| 117 | + </execution> |
| 118 | + </executions> |
| 119 | + <configuration> |
| 120 | + <descriptors> |
| 121 | + <descriptor>src/assembly/package.xml</descriptor> |
| 122 | + </descriptors> |
| 123 | + </configuration> |
| 124 | + </plugin> |
| 125 | + </plugins> |
| 126 | + </build> |
129 | 127 | </project>
|
0 commit comments