|
1 | | -<?xml version="1.0" encoding="UTF-8"?> |
| 1 | +<?xml version='1.0' encoding='UTF-8'?> |
2 | 2 | <!-- |
3 | 3 |
|
4 | 4 | Licensed to the Apache Software Foundation (ASF) under one |
|
19 | 19 | under the License. |
20 | 20 |
|
21 | 21 | --> |
22 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" |
23 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
24 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | +<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"> |
25 | 23 | <parent> |
26 | 24 | <groupId>org.apache</groupId> |
27 | 25 | <artifactId>apache</artifactId> |
28 | 26 | <version>18</version> |
29 | 27 | </parent> |
30 | | - |
31 | 28 | <modelVersion>4.0.0</modelVersion> |
32 | | - |
33 | 29 | <groupId>org.apache.pulsar.ecosystem</groupId> |
34 | 30 | <artifactId>pulsar-io-activemq</artifactId> |
35 | | - <version>0.0.1</version> |
| 31 | + <version>4.0.1.4</version> |
36 | 32 | <name>Pulsar Ecosystem :: IO Connector :: ActiveMQ Connector</name> |
37 | 33 | <description>ActiveMQ source connector and ActiveMQ sink connector.</description> |
38 | | - |
39 | 34 | <properties> |
40 | 35 | <java.version>17</java.version> |
41 | 36 | <maven.compiler.source>17</maven.compiler.source> |
|
45 | 40 | <redirectTestOutputToFile>true</redirectTestOutputToFile> |
46 | 41 | <spotbugs-annotations.version>3.1.8</spotbugs-annotations.version> |
47 | 42 | <testRetryCount>2</testRetryCount> |
48 | | - |
49 | 43 | <!-- connector dependencies --> |
50 | 44 | <jackson.version>2.12.7.1</jackson.version> |
51 | 45 | <lombok.version>1.18.20</lombok.version> |
52 | | - <pulsar.version>3.0.1.6</pulsar.version> |
| 46 | + <pulsar.version>4.0.1.4</pulsar.version> |
53 | 47 | <activemq.verion>5.15.12</activemq.verion> |
54 | | - |
55 | 48 | <!-- test dependencies --> |
56 | 49 | <junit.version>4.13.1</junit.version> |
57 | 50 | <mockito.version>2.22.0</mockito.version> |
58 | 51 | <powermock.version>2.0.0-beta.5</powermock.version> |
59 | 52 | <testcontainers.version>1.8.3</testcontainers.version> |
60 | | - |
61 | 53 | <!-- build plugin dependencies --> |
62 | 54 | <license.plugin.version>3.0</license.plugin.version> |
63 | 55 | <maven-checkstyle-plugin.version>3.3.1</maven-checkstyle-plugin.version> |
|
67 | 59 | <puppycrawl.checkstyle.version>10.12.4</puppycrawl.checkstyle.version> |
68 | 60 | <spotbugs-maven-plugin.version>4.2.2</spotbugs-maven-plugin.version> |
69 | 61 | </properties> |
70 | | - |
71 | 62 | <licenses> |
72 | 63 | <license> |
73 | 64 | <name>Apache License, Version 2.0</name> |
74 | 65 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
75 | 66 | <distribution>repo</distribution> |
76 | 67 | </license> |
77 | 68 | </licenses> |
78 | | - |
79 | 69 | <!-- keep all the dependencies used by all modules here --> |
80 | 70 | <dependencyManagement> |
81 | 71 | <dependencies> |
|
127 | 117 | </dependency> |
128 | 118 | </dependencies> |
129 | 119 | </dependencyManagement> |
130 | | - |
131 | 120 | <!-- include the dependencies --> |
132 | 121 | <dependencies> |
133 | | - |
134 | | - <dependency> |
135 | | - <groupId>org.apache.activemq</groupId> |
136 | | - <artifactId>activemq-client</artifactId> |
137 | | - <version>${activemq.verion}</version> |
138 | | - </dependency> |
139 | | - |
| 122 | + <dependency> |
| 123 | + <groupId>org.apache.activemq</groupId> |
| 124 | + <artifactId>activemq-client</artifactId> |
| 125 | + <version>${activemq.verion}</version> |
| 126 | + </dependency> |
140 | 127 | <!-- provided dependencies (available at compilation and test classpaths and *NOT* packaged) --> |
141 | 128 | <dependency> |
142 | 129 | <groupId>org.projectlombok</groupId> |
|
148 | 135 | <artifactId>spotbugs-annotations</artifactId> |
149 | 136 | <scope>provided</scope> |
150 | 137 | </dependency> |
151 | | - |
152 | 138 | <!-- runtime dependencies --> |
153 | 139 | <dependency> |
154 | 140 | <groupId>io.streamnative</groupId> |
155 | 141 | <artifactId>pulsar-io-common</artifactId> |
156 | 142 | </dependency> |
157 | | - |
158 | 143 | <dependency> |
159 | 144 | <groupId>com.fasterxml.jackson.core</groupId> |
160 | 145 | <artifactId>jackson-databind</artifactId> |
161 | 146 | </dependency> |
162 | | - |
163 | 147 | <!-- test dependencies --> |
164 | 148 | <dependency> |
165 | 149 | <groupId>junit</groupId> |
|
187 | 171 | <scope>test</scope> |
188 | 172 | </dependency> |
189 | 173 | </dependencies> |
190 | | - |
191 | 174 | <build> |
192 | 175 | <pluginManagement> |
193 | 176 | <plugins> |
|
204 | 187 | <compilerArg>-Xlint:unchecked</compilerArg> |
205 | 188 | <!-- https://issues.apache.org/jira/browse/MCOMPILER-205 --> |
206 | 189 | <compilerArg>-Xpkginfo:always</compilerArg> |
207 | | - </compilerArgs> |
| 190 | + </compilerArgs> |
208 | 191 | </configuration> |
209 | 192 | </plugin> |
210 | 193 | <!-- test --> |
|
327 | 310 | </plugin> |
328 | 311 | </plugins> |
329 | 312 | </pluginManagement> |
330 | | - |
331 | 313 | <plugins> |
332 | | - <!-- compile --> |
| 314 | + <!-- compile --> |
333 | 315 | <plugin> |
334 | 316 | <groupId>org.apache.maven.plugins</groupId> |
335 | 317 | <artifactId>maven-compiler-plugin</artifactId> |
336 | 318 | </plugin> |
337 | | - |
338 | 319 | <!-- test --> |
339 | 320 | <plugin> |
340 | 321 | <groupId>org.apache.maven.plugins</groupId> |
341 | 322 | <artifactId>maven-surefire-plugin</artifactId> |
342 | 323 | </plugin> |
343 | | - |
344 | 324 | <!-- package --> |
345 | 325 | <plugin> |
346 | 326 | <groupId>org.apache.nifi</groupId> |
347 | 327 | <artifactId>nifi-nar-maven-plugin</artifactId> |
348 | 328 | </plugin> |
349 | | - |
350 | 329 | <!-- license --> |
351 | 330 | <plugin> |
352 | 331 | <groupId>com.mycila</groupId> |
353 | 332 | <artifactId>license-maven-plugin</artifactId> |
354 | 333 | </plugin> |
355 | | - |
356 | 334 | <!-- checkstyle --> |
357 | 335 | <plugin> |
358 | 336 | <groupId>org.apache.maven.plugins</groupId> |
359 | 337 | <artifactId>maven-checkstyle-plugin</artifactId> |
360 | 338 | </plugin> |
361 | | - |
362 | 339 | <!-- spotbugs --> |
363 | 340 | <plugin> |
364 | 341 | <groupId>com.github.spotbugs</groupId> |
365 | 342 | <artifactId>spotbugs-maven-plugin</artifactId> |
366 | 343 | </plugin> |
367 | 344 | </plugins> |
368 | 345 | </build> |
369 | | - |
| 346 | + <repositories> |
| 347 | + <repository> |
| 348 | + <id>ossrh</id> |
| 349 | + <url>https://s01.oss.sonatype.org/service/local/repositories/iostreamnative-3710/content</url> |
| 350 | + </repository> |
| 351 | + <repository> |
| 352 | + <id>nexus-snapshot-ci</id> |
| 353 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 354 | + </repository> |
| 355 | + </repositories> |
| 356 | + <distributionManagement> |
| 357 | + <snapshotRepository> |
| 358 | + <id>ossrh</id> |
| 359 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 360 | + </snapshotRepository> |
| 361 | + <repository> |
| 362 | + <id>ossrh</id> |
| 363 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 364 | + </repository> |
| 365 | + </distributionManagement> |
370 | 366 | </project> |
0 commit comments