|
1 | | -<?xml version="1.0" encoding="UTF-8"?> |
| 1 | +<?xml version='1.0' encoding='UTF-8'?> |
2 | 2 | <!-- |
3 | 3 |
|
4 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
|
14 | 14 | limitations under the License. |
15 | 15 |
|
16 | 16 | --> |
17 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" |
18 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
19 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
20 | | - |
| 17 | +<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"> |
21 | 18 | <parent> |
22 | 19 | <groupId>org.apache</groupId> |
23 | 20 | <artifactId>apache</artifactId> |
24 | 21 | <version>18</version> |
25 | 22 | </parent> |
26 | 23 | <modelVersion>4.0.0</modelVersion> |
27 | | - |
28 | 24 | <packaging>pom</packaging> |
29 | | - |
30 | 25 | <groupId>io.streamnative.pulsar.handlers</groupId> |
31 | 26 | <artifactId>pulsar-protocol-handler-amqp-parent</artifactId> |
32 | | - <version>3.3.0-SNAPSHOT</version> |
| 27 | + <version>3.3.2.3</version> |
33 | 28 | <name>StreamNative :: Pulsar Protocol Handler :: AoP Parent</name> |
34 | 29 | <description>Parent for AMQP on Pulsar implemented using Pulsar Protocol Handler.</description> |
35 | | - |
36 | 30 | <properties> |
37 | 31 | <redirectTestOutputToFile>true</redirectTestOutputToFile> |
38 | 32 | <maven.compiler.source>17</maven.compiler.source> |
39 | 33 | <maven.compiler.target>17</maven.compiler.target> |
40 | 34 | <project.compiler.release>${maven.compiler.target}</project.compiler.release> |
41 | | - |
42 | 35 | <!-- dependencies --> |
43 | | - <pulsar.version>3.3.0.2</pulsar.version> |
| 36 | + <pulsar.version>3.3.2.3</pulsar.version> |
44 | 37 | <qpid-protocol-plugin.version>8.0.0</qpid-protocol-plugin.version> |
45 | 38 | <rabbitmq.version>5.8.0</rabbitmq.version> |
46 | | - |
47 | 39 | <!-- test dependencies --> |
48 | 40 | <qpid-client-version>6.4.0</qpid-client-version> |
49 | 41 | <geronimo-jms-version>1.1.1</geronimo-jms-version> |
50 | 42 | <testcontainers.version>1.12.5</testcontainers.version> |
51 | 43 | <testng.version>6.14.3</testng.version> |
52 | 44 | <awaitility.version>4.2.0</awaitility.version> |
53 | 45 | <assertj.version>3.15.0</assertj.version> |
54 | | - |
55 | 46 | <!-- plugin dependencies --> |
56 | 47 | <spotbugs-annotations.version>3.1.8</spotbugs-annotations.version> |
57 | 48 | <dockerfile-maven.version>1.4.9</dockerfile-maven.version> |
|
63 | 54 | <puppycrawl.checkstyle.version>8.37</puppycrawl.checkstyle.version> |
64 | 55 | <spotbugs-maven-plugin.version>4.2.2</spotbugs-maven-plugin.version> |
65 | 56 | </properties> |
66 | | - |
67 | 57 | <licenses> |
68 | 58 | <license> |
69 | 59 | <name>Apache License, Version 2.0</name> |
70 | 60 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
71 | 61 | <distribution>repo</distribution> |
72 | 62 | </license> |
73 | 63 | </licenses> |
74 | | - |
75 | 64 | <modules> |
76 | 65 | <module>amqp-impl</module> |
77 | 66 | <module>tests</module> |
78 | 67 | <module>tests-qpid-jms-client</module> |
79 | 68 | <module>amqp-client-auth</module> |
80 | 69 | </modules> |
81 | | - |
82 | 70 | <!-- dependency definitions --> |
83 | 71 | <dependencyManagement> |
84 | 72 | <dependencies> |
85 | | - |
86 | 73 | <dependency> |
87 | 74 | <groupId>io.streamnative</groupId> |
88 | 75 | <artifactId>pulsar</artifactId> |
89 | 76 | <version>${pulsar.version}</version> |
90 | 77 | <type>pom</type> |
91 | 78 | <scope>import</scope> |
92 | 79 | </dependency> |
93 | | - |
94 | 80 | <dependency> |
95 | 81 | <groupId>io.streamnative</groupId> |
96 | 82 | <artifactId>pulsar-broker</artifactId> |
97 | 83 | <version>${pulsar.version}</version> |
98 | 84 | </dependency> |
99 | | - |
100 | 85 | <dependency> |
101 | 86 | <groupId>io.streamnative</groupId> |
102 | 87 | <artifactId>pulsar-broker</artifactId> |
103 | 88 | <version>${pulsar.version}</version> |
104 | 89 | <type>test-jar</type> |
105 | 90 | </dependency> |
106 | | - |
107 | 91 | <dependency> |
108 | 92 | <groupId>io.streamnative</groupId> |
109 | 93 | <artifactId>testmocks</artifactId> |
110 | 94 | <version>${pulsar.version}</version> |
111 | 95 | </dependency> |
112 | | - |
113 | 96 | <dependency> |
114 | 97 | <groupId>com.rabbitmq</groupId> |
115 | 98 | <artifactId>amqp-client</artifactId> |
116 | 99 | <version>${rabbitmq.version}</version> |
117 | 100 | </dependency> |
118 | | - |
119 | 101 | <dependency> |
120 | 102 | <groupId>org.apache.qpid</groupId> |
121 | 103 | <artifactId>qpid-client</artifactId> |
122 | 104 | <version>${qpid-client-version}</version> |
123 | 105 | </dependency> |
124 | | - |
125 | 106 | <dependency> |
126 | 107 | <groupId>org.apache.geronimo.specs</groupId> |
127 | 108 | <artifactId>geronimo-jms_1.1_spec</artifactId> |
128 | 109 | <version>${geronimo-jms-version}</version> |
129 | 110 | </dependency> |
130 | | - |
131 | 111 | <dependency> |
132 | 112 | <groupId>org.apache.qpid</groupId> |
133 | 113 | <artifactId>qpid-test-utils</artifactId> |
134 | 114 | <version>${qpid-protocol-plugin.version}</version> |
135 | 115 | </dependency> |
136 | | - |
137 | 116 | <dependency> |
138 | 117 | <groupId>com.github.spotbugs</groupId> |
139 | 118 | <artifactId>spotbugs-annotations</artifactId> |
140 | 119 | <version>${spotbugs-annotations.version}</version> |
141 | 120 | </dependency> |
142 | | - |
143 | 121 | </dependencies> |
144 | 122 | </dependencyManagement> |
145 | | - |
146 | 123 | <!-- These dependencies are common to all submodules --> |
147 | 124 | <dependencies> |
148 | 125 | <!-- provided dependencies (available at compilation and test classpths and *NOT* packaged) --> |
|
151 | 128 | <artifactId>pulsar-broker</artifactId> |
152 | 129 | <scope>provided</scope> |
153 | 130 | </dependency> |
154 | | - |
155 | 131 | <dependency> |
156 | 132 | <groupId>org.projectlombok</groupId> |
157 | 133 | <artifactId>lombok</artifactId> |
158 | 134 | <scope>provided</scope> |
159 | 135 | </dependency> |
160 | | - |
161 | 136 | <dependency> |
162 | 137 | <groupId>com.github.spotbugs</groupId> |
163 | 138 | <artifactId>spotbugs-annotations</artifactId> |
164 | 139 | <scope>provided</scope> |
165 | 140 | </dependency> |
166 | | - |
167 | 141 | <!-- dependencies for tests --> |
168 | 142 | <dependency> |
169 | 143 | <groupId>io.streamnative</groupId> |
170 | 144 | <artifactId>pulsar-broker</artifactId> |
171 | 145 | <type>test-jar</type> |
172 | 146 | <scope>test</scope> |
173 | 147 | </dependency> |
174 | | - |
175 | 148 | <dependency> |
176 | 149 | <groupId>io.streamnative</groupId> |
177 | 150 | <artifactId>testmocks</artifactId> |
178 | 151 | <scope>test</scope> |
179 | 152 | </dependency> |
180 | | - |
181 | 153 | <dependency> |
182 | 154 | <groupId>org.testng</groupId> |
183 | 155 | <artifactId>testng</artifactId> |
184 | 156 | <scope>test</scope> |
185 | 157 | </dependency> |
186 | | - |
187 | 158 | <dependency> |
188 | 159 | <groupId>org.mockito</groupId> |
189 | 160 | <artifactId>mockito-core</artifactId> |
190 | 161 | <scope>test</scope> |
191 | 162 | </dependency> |
192 | | - |
193 | 163 | <dependency> |
194 | 164 | <groupId>org.awaitility</groupId> |
195 | 165 | <artifactId>awaitility</artifactId> |
196 | 166 | <scope>test</scope> |
197 | 167 | </dependency> |
198 | | - |
199 | 168 | <dependency> |
200 | 169 | <groupId>org.assertj</groupId> |
201 | 170 | <artifactId>assertj-core</artifactId> |
202 | 171 | <scope>test</scope> |
203 | 172 | </dependency> |
204 | | - |
205 | 173 | <!-- TODO Currently, some tests use junit tool, we can unify the test framework in the future --> |
206 | 174 | <dependency> |
207 | 175 | <groupId>junit</groupId> |
208 | 176 | <artifactId>junit</artifactId> |
209 | 177 | <version>4.13.2</version> |
210 | 178 | <scope>test</scope> |
211 | 179 | </dependency> |
212 | | - |
213 | 180 | </dependencies> |
214 | | - |
215 | 181 | <build> |
216 | 182 | <pluginManagement> |
217 | 183 | <plugins> |
|
260 | 226 | <excludeFilterFile>resources/findbugsExclude.xml</excludeFilterFile> |
261 | 227 | </configuration> |
262 | 228 | </plugin> |
263 | | - |
264 | 229 | <plugin> |
265 | 230 | <artifactId>maven-compiler-plugin</artifactId> |
266 | 231 | <version>${maven-compiler-plugin.version}</version> |
|
277 | 242 | </compilerArgs> |
278 | 243 | </configuration> |
279 | 244 | </plugin> |
280 | | - |
281 | 245 | <plugin> |
282 | 246 | <artifactId>maven-surefire-plugin</artifactId> |
283 | 247 | <version>${maven-surefire-plugin.version}</version> |
|
293 | 257 | <trimStackTrace>false</trimStackTrace> |
294 | 258 | </configuration> |
295 | 259 | </plugin> |
296 | | - |
297 | 260 | <plugin> |
298 | 261 | <groupId>com.mycila</groupId> |
299 | 262 | <artifactId>license-maven-plugin</artifactId> |
300 | 263 | <version>${license-maven-plugin.version}</version> |
301 | 264 | <configuration> |
302 | 265 | <header>resources/license.template</header> |
303 | | - |
304 | 266 | <excludes> |
305 | 267 | <exclude>LICENSE</exclude> |
306 | 268 | <exclude>NOTICE</exclude> |
|
330 | 292 | </mapping> |
331 | 293 | </configuration> |
332 | 294 | </plugin> |
333 | | - |
334 | 295 | <plugin> |
335 | 296 | <groupId>org.codehaus.mojo</groupId> |
336 | 297 | <artifactId>templating-maven-plugin</artifactId> |
|
344 | 305 | </execution> |
345 | 306 | </executions> |
346 | 307 | </plugin> |
347 | | - |
348 | 308 | <plugin> |
349 | 309 | <groupId>pl.project13.maven</groupId> |
350 | 310 | <artifactId>git-commit-id-plugin</artifactId> |
|
370 | 330 | <commitIdGenerationMode>full</commitIdGenerationMode> |
371 | 331 | </configuration> |
372 | 332 | </plugin> |
373 | | - |
374 | 333 | </plugins> |
375 | 334 | </build> |
376 | | - |
377 | 335 | <repositories> |
378 | 336 | <repository> |
379 | 337 | <id>central</id> |
|
386 | 344 | </repository> |
387 | 345 | <repository> |
388 | 346 | <id>ossrh</id> |
389 | | - <url>https://s01.oss.sonatype.org/service/local/repositories/iostreamnative-3155/content</url> |
| 347 | + <url>https://s01.oss.sonatype.org/service/local/repositories/iostreamnative-3446/content</url> |
| 348 | + </repository> |
| 349 | + <repository> |
| 350 | + <id>nexus-snapshot</id> |
| 351 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
390 | 352 | </repository> |
391 | 353 | </repositories> |
392 | | - |
| 354 | + <distributionManagement> |
| 355 | + <snapshotRepository> |
| 356 | + <id>ossrh</id> |
| 357 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 358 | + </snapshotRepository> |
| 359 | + <repository> |
| 360 | + <id>ossrh</id> |
| 361 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 362 | + </repository> |
| 363 | + </distributionManagement> |
393 | 364 | </project> |
0 commit comments