Skip to content

Commit 9218d98

Browse files
author
streamnativebot
committed
"Created by snbot"
1 parent 73ff493 commit 9218d98

File tree

5 files changed

+25
-41
lines changed

5 files changed

+25
-41
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>4.1.0-SNAPSHOT</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>4.1.0-SNAPSHOT</version>
2626
</parent>
2727

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

pom.xml

+21-37
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,37 +14,29 @@
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>4.1.0-SNAPSHOT</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 -->
4336
<pulsar.version>4.1.0-SNAPSHOT</pulsar.version>
4437
<qpid-protocol-plugin.version>8.0.0</qpid-protocol-plugin.version>
4538
<rabbitmq.version>5.8.0</rabbitmq.version>
4639
<sn.bom.version>4.1.0-SNAPSHOT</sn.bom.version>
47-
4840
<!-- test dependencies -->
4941
<qpid-client-version>6.4.0</qpid-client-version>
5042
<geronimo-jms-version>1.1.1</geronimo-jms-version>
@@ -53,7 +45,6 @@
5345
<awaitility.version>4.2.0</awaitility.version>
5446
<assertj.version>3.15.0</assertj.version>
5547
<mockito.version>5.12.0</mockito.version>
56-
5748
<!-- plugin dependencies -->
5849
<spotbugs-annotations.version>3.1.8</spotbugs-annotations.version>
5950
<dockerfile-maven.version>1.4.9</dockerfile-maven.version>
@@ -65,22 +56,19 @@
6556
<puppycrawl.checkstyle.version>8.37</puppycrawl.checkstyle.version>
6657
<spotbugs-maven-plugin.version>4.2.2</spotbugs-maven-plugin.version>
6758
</properties>
68-
6959
<licenses>
7060
<license>
7161
<name>Apache License, Version 2.0</name>
7262
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
7363
<distribution>repo</distribution>
7464
</license>
7565
</licenses>
76-
7766
<modules>
7867
<module>amqp-impl</module>
7968
<module>tests</module>
8069
<module>tests-qpid-jms-client</module>
8170
<module>amqp-client-auth</module>
8271
</modules>
83-
8472
<!-- dependency definitions -->
8573
<dependencyManagement>
8674
<dependencies>
@@ -91,23 +79,19 @@
9179
<scope>import</scope>
9280
<type>pom</type>
9381
</dependency>
94-
9582
<dependency>
9683
<groupId>io.streamnative</groupId>
9784
<artifactId>testmocks</artifactId>
9885
<version>${pulsar.version}</version>
9986
<scope>test</scope>
10087
</dependency>
101-
10288
<dependency>
10389
<groupId>com.github.spotbugs</groupId>
10490
<artifactId>spotbugs-annotations</artifactId>
10591
<version>${spotbugs-annotations.version}</version>
10692
</dependency>
107-
10893
</dependencies>
10994
</dependencyManagement>
110-
11195
<!-- These dependencies are common to all submodules -->
11296
<dependencies>
11397
<!-- provided dependencies (available at compilation and test classpths and *NOT* packaged) -->
@@ -116,57 +100,48 @@
116100
<artifactId>pulsar-broker</artifactId>
117101
<scope>provided</scope>
118102
</dependency>
119-
120103
<dependency>
121104
<groupId>org.projectlombok</groupId>
122105
<artifactId>lombok</artifactId>
123106
<scope>provided</scope>
124107
</dependency>
125-
126108
<dependency>
127109
<groupId>com.github.spotbugs</groupId>
128110
<artifactId>spotbugs-annotations</artifactId>
129111
<scope>provided</scope>
130112
</dependency>
131-
132113
<!-- dependencies for tests -->
133114
<dependency>
134115
<groupId>io.streamnative</groupId>
135116
<artifactId>testmocks</artifactId>
136117
<scope>test</scope>
137118
</dependency>
138-
139119
<dependency>
140120
<groupId>org.mockito</groupId>
141121
<artifactId>mockito-core</artifactId>
142122
<version>${mockito.version}</version>
143123
<scope>test</scope>
144124
</dependency>
145-
146125
<dependency>
147126
<groupId>org.awaitility</groupId>
148127
<artifactId>awaitility</artifactId>
149128
<version>${awaitility.version}</version>
150129
<scope>test</scope>
151130
</dependency>
152-
153131
<dependency>
154132
<groupId>org.assertj</groupId>
155133
<artifactId>assertj-core</artifactId>
156134
<version>${assertj.version}</version>
157135
<scope>test</scope>
158136
</dependency>
159-
160137
<!-- TODO Currently, some tests use junit tool, we can unify the test framework in the future -->
161138
<dependency>
162139
<groupId>junit</groupId>
163140
<artifactId>junit</artifactId>
164141
<version>4.13.2</version>
165142
<scope>test</scope>
166143
</dependency>
167-
168144
</dependencies>
169-
170145
<build>
171146
<pluginManagement>
172147
<plugins>
@@ -215,7 +190,6 @@
215190
<excludeFilterFile>resources/findbugsExclude.xml</excludeFilterFile>
216191
</configuration>
217192
</plugin>
218-
219193
<plugin>
220194
<artifactId>maven-compiler-plugin</artifactId>
221195
<version>${maven-compiler-plugin.version}</version>
@@ -232,7 +206,6 @@
232206
</compilerArgs>
233207
</configuration>
234208
</plugin>
235-
236209
<plugin>
237210
<artifactId>maven-surefire-plugin</artifactId>
238211
<version>${maven-surefire-plugin.version}</version>
@@ -248,14 +221,12 @@
248221
<trimStackTrace>false</trimStackTrace>
249222
</configuration>
250223
</plugin>
251-
252224
<plugin>
253225
<groupId>com.mycila</groupId>
254226
<artifactId>license-maven-plugin</artifactId>
255227
<version>${license-maven-plugin.version}</version>
256228
<configuration>
257229
<header>resources/license.template</header>
258-
259230
<excludes>
260231
<exclude>LICENSE</exclude>
261232
<exclude>NOTICE</exclude>
@@ -285,7 +256,6 @@
285256
</mapping>
286257
</configuration>
287258
</plugin>
288-
289259
<plugin>
290260
<groupId>org.codehaus.mojo</groupId>
291261
<artifactId>templating-maven-plugin</artifactId>
@@ -299,7 +269,6 @@
299269
</execution>
300270
</executions>
301271
</plugin>
302-
303272
<plugin>
304273
<groupId>pl.project13.maven</groupId>
305274
<artifactId>git-commit-id-plugin</artifactId>
@@ -325,10 +294,8 @@
325294
<commitIdGenerationMode>full</commitIdGenerationMode>
326295
</configuration>
327296
</plugin>
328-
329297
</plugins>
330298
</build>
331-
332299
<repositories>
333300
<repository>
334301
<id>central</id>
@@ -346,6 +313,23 @@
346313
<enabled>true</enabled>
347314
</snapshots>
348315
</repository>
316+
<repository>
317+
<id>ossrh</id>
318+
<url>https://s01.oss.sonatype.org/service/local/repositories/0/content</url>
319+
</repository>
320+
<repository>
321+
<id>nexus-snapshot-ci</id>
322+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
323+
</repository>
349324
</repositories>
350-
325+
<distributionManagement>
326+
<snapshotRepository>
327+
<id>ossrh</id>
328+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
329+
</snapshotRepository>
330+
<repository>
331+
<id>ossrh</id>
332+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
333+
</repository>
334+
</distributionManagement>
351335
</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>4.1.0-SNAPSHOT</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>4.1.0-SNAPSHOT</version>
2626
</parent>
2727

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

0 commit comments

Comments
 (0)