Skip to content

Commit e2bce23

Browse files
author
streamnativebot
committed
"Created by snbot"
1 parent 05ffe1e commit e2bce23

File tree

5 files changed

+23
-52
lines changed

5 files changed

+23
-52
lines changed

amqp-client-auth/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>pulsar-protocol-handler-amqp-parent</artifactId>
2222
<groupId>io.streamnative.pulsar.handlers</groupId>
23-
<version>3.3.0-SNAPSHOT</version>
23+
<version>3.3.2.1</version>
2424
</parent>
2525

2626
<modelVersion>4.0.0</modelVersion>

amqp-impl/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>io.streamnative.pulsar.handlers</groupId>
2424
<artifactId>pulsar-protocol-handler-amqp-parent</artifactId>
25-
<version>3.3.0-SNAPSHOT</version>
25+
<version>3.3.2.1</version>
2626
</parent>
2727

2828
<artifactId>pulsar-protocol-handler-amqp</artifactId>

pom.xml

+19-48
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
1+
<?xml version='1.0' encoding='UTF-8'?>
22
<!--
33
44
Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,44 +14,35 @@
1414
limitations under the License.
1515
1616
-->
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">
2118
<parent>
2219
<groupId>org.apache</groupId>
2320
<artifactId>apache</artifactId>
2421
<version>18</version>
2522
</parent>
2623
<modelVersion>4.0.0</modelVersion>
27-
2824
<packaging>pom</packaging>
29-
3025
<groupId>io.streamnative.pulsar.handlers</groupId>
3126
<artifactId>pulsar-protocol-handler-amqp-parent</artifactId>
32-
<version>3.3.0-SNAPSHOT</version>
27+
<version>3.3.2.1</version>
3328
<name>StreamNative :: Pulsar Protocol Handler :: AoP Parent</name>
3429
<description>Parent for AMQP on Pulsar implemented using Pulsar Protocol Handler.</description>
35-
3630
<properties>
3731
<redirectTestOutputToFile>true</redirectTestOutputToFile>
3832
<maven.compiler.source>17</maven.compiler.source>
3933
<maven.compiler.target>17</maven.compiler.target>
4034
<project.compiler.release>${maven.compiler.target}</project.compiler.release>
41-
4235
<!-- dependencies -->
43-
<pulsar.version>3.3.0.2</pulsar.version>
36+
<pulsar.version>3.3.2.1</pulsar.version>
4437
<qpid-protocol-plugin.version>8.0.0</qpid-protocol-plugin.version>
4538
<rabbitmq.version>5.8.0</rabbitmq.version>
46-
4739
<!-- test dependencies -->
4840
<qpid-client-version>6.4.0</qpid-client-version>
4941
<geronimo-jms-version>1.1.1</geronimo-jms-version>
5042
<testcontainers.version>1.12.5</testcontainers.version>
5143
<testng.version>6.14.3</testng.version>
5244
<awaitility.version>4.2.0</awaitility.version>
5345
<assertj.version>3.15.0</assertj.version>
54-
5546
<!-- plugin dependencies -->
5647
<spotbugs-annotations.version>3.1.8</spotbugs-annotations.version>
5748
<dockerfile-maven.version>1.4.9</dockerfile-maven.version>
@@ -63,86 +54,72 @@
6354
<puppycrawl.checkstyle.version>8.37</puppycrawl.checkstyle.version>
6455
<spotbugs-maven-plugin.version>4.2.2</spotbugs-maven-plugin.version>
6556
</properties>
66-
6757
<licenses>
6858
<license>
6959
<name>Apache License, Version 2.0</name>
7060
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
7161
<distribution>repo</distribution>
7262
</license>
7363
</licenses>
74-
7564
<modules>
7665
<module>amqp-impl</module>
7766
<module>tests</module>
7867
<module>tests-qpid-jms-client</module>
7968
<module>amqp-client-auth</module>
8069
</modules>
81-
8270
<!-- dependency definitions -->
8371
<dependencyManagement>
8472
<dependencies>
85-
8673
<dependency>
8774
<groupId>io.streamnative</groupId>
8875
<artifactId>pulsar</artifactId>
8976
<version>${pulsar.version}</version>
9077
<type>pom</type>
9178
<scope>import</scope>
9279
</dependency>
93-
9480
<dependency>
9581
<groupId>io.streamnative</groupId>
9682
<artifactId>pulsar-broker</artifactId>
9783
<version>${pulsar.version}</version>
9884
</dependency>
99-
10085
<dependency>
10186
<groupId>io.streamnative</groupId>
10287
<artifactId>pulsar-broker</artifactId>
10388
<version>${pulsar.version}</version>
10489
<type>test-jar</type>
10590
</dependency>
106-
10791
<dependency>
10892
<groupId>io.streamnative</groupId>
10993
<artifactId>testmocks</artifactId>
11094
<version>${pulsar.version}</version>
11195
</dependency>
112-
11396
<dependency>
11497
<groupId>com.rabbitmq</groupId>
11598
<artifactId>amqp-client</artifactId>
11699
<version>${rabbitmq.version}</version>
117100
</dependency>
118-
119101
<dependency>
120102
<groupId>org.apache.qpid</groupId>
121103
<artifactId>qpid-client</artifactId>
122104
<version>${qpid-client-version}</version>
123105
</dependency>
124-
125106
<dependency>
126107
<groupId>org.apache.geronimo.specs</groupId>
127108
<artifactId>geronimo-jms_1.1_spec</artifactId>
128109
<version>${geronimo-jms-version}</version>
129110
</dependency>
130-
131111
<dependency>
132112
<groupId>org.apache.qpid</groupId>
133113
<artifactId>qpid-test-utils</artifactId>
134114
<version>${qpid-protocol-plugin.version}</version>
135115
</dependency>
136-
137116
<dependency>
138117
<groupId>com.github.spotbugs</groupId>
139118
<artifactId>spotbugs-annotations</artifactId>
140119
<version>${spotbugs-annotations.version}</version>
141120
</dependency>
142-
143121
</dependencies>
144122
</dependencyManagement>
145-
146123
<!-- These dependencies are common to all submodules -->
147124
<dependencies>
148125
<!-- provided dependencies (available at compilation and test classpths and *NOT* packaged) -->
@@ -151,67 +128,56 @@
151128
<artifactId>pulsar-broker</artifactId>
152129
<scope>provided</scope>
153130
</dependency>
154-
155131
<dependency>
156132
<groupId>org.projectlombok</groupId>
157133
<artifactId>lombok</artifactId>
158134
<scope>provided</scope>
159135
</dependency>
160-
161136
<dependency>
162137
<groupId>com.github.spotbugs</groupId>
163138
<artifactId>spotbugs-annotations</artifactId>
164139
<scope>provided</scope>
165140
</dependency>
166-
167141
<!-- dependencies for tests -->
168142
<dependency>
169143
<groupId>io.streamnative</groupId>
170144
<artifactId>pulsar-broker</artifactId>
171145
<type>test-jar</type>
172146
<scope>test</scope>
173147
</dependency>
174-
175148
<dependency>
176149
<groupId>io.streamnative</groupId>
177150
<artifactId>testmocks</artifactId>
178151
<scope>test</scope>
179152
</dependency>
180-
181153
<dependency>
182154
<groupId>org.testng</groupId>
183155
<artifactId>testng</artifactId>
184156
<scope>test</scope>
185157
</dependency>
186-
187158
<dependency>
188159
<groupId>org.mockito</groupId>
189160
<artifactId>mockito-core</artifactId>
190161
<scope>test</scope>
191162
</dependency>
192-
193163
<dependency>
194164
<groupId>org.awaitility</groupId>
195165
<artifactId>awaitility</artifactId>
196166
<scope>test</scope>
197167
</dependency>
198-
199168
<dependency>
200169
<groupId>org.assertj</groupId>
201170
<artifactId>assertj-core</artifactId>
202171
<scope>test</scope>
203172
</dependency>
204-
205173
<!-- TODO Currently, some tests use junit tool, we can unify the test framework in the future -->
206174
<dependency>
207175
<groupId>junit</groupId>
208176
<artifactId>junit</artifactId>
209177
<version>4.13.2</version>
210178
<scope>test</scope>
211179
</dependency>
212-
213180
</dependencies>
214-
215181
<build>
216182
<pluginManagement>
217183
<plugins>
@@ -260,7 +226,6 @@
260226
<excludeFilterFile>resources/findbugsExclude.xml</excludeFilterFile>
261227
</configuration>
262228
</plugin>
263-
264229
<plugin>
265230
<artifactId>maven-compiler-plugin</artifactId>
266231
<version>${maven-compiler-plugin.version}</version>
@@ -277,7 +242,6 @@
277242
</compilerArgs>
278243
</configuration>
279244
</plugin>
280-
281245
<plugin>
282246
<artifactId>maven-surefire-plugin</artifactId>
283247
<version>${maven-surefire-plugin.version}</version>
@@ -293,14 +257,12 @@
293257
<trimStackTrace>false</trimStackTrace>
294258
</configuration>
295259
</plugin>
296-
297260
<plugin>
298261
<groupId>com.mycila</groupId>
299262
<artifactId>license-maven-plugin</artifactId>
300263
<version>${license-maven-plugin.version}</version>
301264
<configuration>
302265
<header>resources/license.template</header>
303-
304266
<excludes>
305267
<exclude>LICENSE</exclude>
306268
<exclude>NOTICE</exclude>
@@ -330,7 +292,6 @@
330292
</mapping>
331293
</configuration>
332294
</plugin>
333-
334295
<plugin>
335296
<groupId>org.codehaus.mojo</groupId>
336297
<artifactId>templating-maven-plugin</artifactId>
@@ -344,7 +305,6 @@
344305
</execution>
345306
</executions>
346307
</plugin>
347-
348308
<plugin>
349309
<groupId>pl.project13.maven</groupId>
350310
<artifactId>git-commit-id-plugin</artifactId>
@@ -370,10 +330,8 @@
370330
<commitIdGenerationMode>full</commitIdGenerationMode>
371331
</configuration>
372332
</plugin>
373-
374333
</plugins>
375334
</build>
376-
377335
<repositories>
378336
<repository>
379337
<id>central</id>
@@ -386,8 +344,21 @@
386344
</repository>
387345
<repository>
388346
<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-3400/content</url>
348+
</repository>
349+
<repository>
350+
<id>nexus-snapshot</id>
351+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
390352
</repository>
391353
</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>
393364
</project>

tests-qpid-jms-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>io.streamnative.pulsar.handlers</groupId>
2222
<artifactId>pulsar-protocol-handler-amqp-parent</artifactId>
23-
<version>3.3.0-SNAPSHOT</version>
23+
<version>3.3.2.1</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>io.streamnative.pulsar.handlers</groupId>
2424
<artifactId>pulsar-protocol-handler-amqp-parent</artifactId>
25-
<version>3.3.0-SNAPSHOT</version>
25+
<version>3.3.2.1</version>
2626
</parent>
2727

2828
<groupId>io.streamnative.pulsar.handlers</groupId>

0 commit comments

Comments
 (0)