|
5 | 5 |
|
6 | 6 | <groupId>com.free-now.multirabbit</groupId> |
7 | 7 | <artifactId>spring-multirabbit-parent</artifactId> |
8 | | - <version>2.3.2-SNAPSHOT</version> |
| 8 | + <version>2.3.4-SNAPSHOT</version> |
9 | 9 | <packaging>pom</packaging> |
10 | 10 |
|
11 | 11 | <name>Spring MultiRabbit</name> |
12 | 12 | <description>Library to extend Spring to provide connection to multiple RabbitMQ servers</description> |
| 13 | + <url>https://github.com/freenowtech/spring-multirabbit</url> |
| 14 | + |
| 15 | + <modules> |
| 16 | + <module>spring-multirabbit</module> |
| 17 | + <module>spring-multirabbit-integration</module> |
| 18 | + <module>spring-multirabbit-examples/spring-multirabbit-example-java</module> |
| 19 | + <module>spring-multirabbit-examples/spring-multirabbit-example-kotlin</module> |
| 20 | + <module>spring-multirabbit-examples/spring-multirabbit-extension-example</module> |
| 21 | + </modules> |
13 | 22 |
|
14 | | - <url>http://www.free-now.com</url> |
15 | 23 | <licenses> |
16 | 24 | <license> |
17 | 25 | <name>Apache License Version 2.0</name> |
18 | | - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 26 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
19 | 27 | </license> |
20 | 28 | </licenses> |
21 | 29 |
|
|
26 | 34 | </developer> |
27 | 35 | </developers> |
28 | 36 |
|
29 | | - <modules> |
30 | | - <module>spring-multirabbit</module> |
31 | | - <module>spring-multirabbit-integration</module> |
32 | | - <module>spring-multirabbit-examples/spring-multirabbit-example-java</module> |
33 | | - <module>spring-multirabbit-examples/spring-multirabbit-example-kotlin</module> |
34 | | - <module>spring-multirabbit-examples/spring-multirabbit-extension-example</module> |
35 | | - </modules> |
36 | | - |
37 | | - <properties> |
38 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
39 | | - <maven.compiler.source>1.8</maven.compiler.source> |
40 | | - <maven.compiler.target>1.8</maven.compiler.target> |
41 | | - <springboot.version>2.3.9.RELEASE</springboot.version> |
42 | | - </properties> |
43 | | - |
44 | 37 | <scm> |
| 38 | + < connection>scm:git: [email protected]:freenowtech/spring-multirabbit.git</ connection> |
| 39 | + < developerConnection>scm:git: [email protected]:freenowtech/spring-multirabbit.git</ developerConnection> |
45 | 40 | <tag>HEAD</tag> |
46 | | - <url>scm:git:https://github.com/freenowtech/spring-multirabbit.git</url> |
47 | | - <connection>scm:git:https://github.com/freenowtech/spring-multirabbit.git</connection> |
48 | | - <developerConnection>scm:git:https://github.com/freenowtech/spring-multirabbit.git</developerConnection> |
| 41 | + < url>scm:git: [email protected]:freenowtech/spring-multirabbit.git</ url> |
49 | 42 | </scm> |
| 43 | + |
50 | 44 | <distributionManagement> |
| 45 | + <snapshotRepository> |
| 46 | + <id>ossrh</id> |
| 47 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 48 | + </snapshotRepository> |
51 | 49 | <repository> |
52 | | - <id>bintray-mytaxi-oss</id> |
53 | | - <name>mytaxi-oss</name> |
54 | | - <url>https://api.bintray.com/maven/mytaxi/oss/spring-multirabbit/;publish=1</url> |
| 50 | + <id>ossrh</id> |
| 51 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
55 | 52 | </repository> |
56 | 53 | </distributionManagement> |
57 | 54 |
|
| 55 | + <properties> |
| 56 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 57 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 58 | + <java.version>1.8</java.version> |
| 59 | + |
| 60 | + <springboot.version>2.3.9.RELEASE</springboot.version> |
| 61 | + <testcontainers-rabbitmq.version>1.15.2</testcontainers-rabbitmq.version> |
| 62 | + |
| 63 | + <maven-release-plugin.version>2.5.3</maven-release-plugin.version> |
| 64 | + <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
| 65 | + <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> |
| 66 | + <maven-source-plugin.version>3.2.1</maven-source-plugin.version> |
| 67 | + <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version> |
| 68 | + <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version> |
| 69 | + <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> |
| 70 | + <maven-checkstyle-plugin.version>3.1.0</maven-checkstyle-plugin.version> |
| 71 | + </properties> |
| 72 | + |
58 | 73 | <dependencyManagement> |
59 | 74 | <dependencies> |
60 | 75 | <dependency> |
|
70 | 85 | <build> |
71 | 86 | <plugins> |
72 | 87 | <plugin> |
73 | | - <groupId>org.apache.maven.plugins</groupId> |
74 | | - <artifactId>maven-surefire-plugin</artifactId> |
75 | | - <version>2.22.2</version> |
| 88 | + <artifactId>maven-release-plugin</artifactId> |
| 89 | + <version>${maven-release-plugin.version}</version> |
76 | 90 | </plugin> |
77 | 91 | <plugin> |
78 | 92 | <groupId>org.apache.maven.plugins</groupId> |
79 | | - <artifactId>maven-compiler-plugin</artifactId> |
80 | | - <version>3.8.1</version> |
| 93 | + <artifactId>maven-surefire-plugin</artifactId> |
| 94 | + <version>${maven-surefire-plugin.version}</version> |
81 | 95 | </plugin> |
82 | 96 | <plugin> |
83 | 97 | <groupId>org.apache.maven.plugins</groupId> |
84 | | - <artifactId>maven-release-plugin</artifactId> |
85 | | - <version>2.5.3</version> |
| 98 | + <artifactId>maven-gpg-plugin</artifactId> |
| 99 | + <version>${maven-gpg-plugin.version}</version> |
| 100 | + <configuration> |
| 101 | + <gpgArguments> |
| 102 | + <arg>--pinentry-mode</arg> |
| 103 | + <arg>loopback</arg> |
| 104 | + </gpgArguments> |
| 105 | + </configuration> |
| 106 | + <executions> |
| 107 | + <execution> |
| 108 | + <id>sign-artifacts</id> |
| 109 | + <phase>verify</phase> |
| 110 | + <goals> |
| 111 | + <goal>sign</goal> |
| 112 | + </goals> |
| 113 | + </execution> |
| 114 | + </executions> |
86 | 115 | </plugin> |
87 | 116 | <plugin> |
88 | 117 | <groupId>org.apache.maven.plugins</groupId> |
89 | 118 | <artifactId>maven-source-plugin</artifactId> |
90 | | - <version>3.0.1</version> |
| 119 | + <version>${maven-source-plugin.version}</version> |
91 | 120 | <executions> |
92 | 121 | <execution> |
93 | 122 | <id>attach-sources</id> |
|
100 | 129 | <plugin> |
101 | 130 | <groupId>org.apache.maven.plugins</groupId> |
102 | 131 | <artifactId>maven-javadoc-plugin</artifactId> |
103 | | - <version>3.0.1</version> |
| 132 | + <version>${maven-javadoc-plugin.version}</version> |
104 | 133 | <executions> |
105 | 134 | <execution> |
106 | 135 | <id>attach-javadocs</id> |
|
110 | 139 | </execution> |
111 | 140 | </executions> |
112 | 141 | </plugin> |
| 142 | + <plugin> |
| 143 | + <groupId>org.sonatype.plugins</groupId> |
| 144 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 145 | + <version>${nexus-staging-maven-plugin.version}</version> |
| 146 | + <extensions>true</extensions> |
| 147 | + <configuration> |
| 148 | + <serverId>ossrh</serverId> |
| 149 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 150 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 151 | + </configuration> |
| 152 | + </plugin> |
| 153 | + <plugin> |
| 154 | + <groupId>org.apache.maven.plugins</groupId> |
| 155 | + <artifactId>maven-compiler-plugin</artifactId> |
| 156 | + <version>${maven-compiler-plugin.version}</version> |
| 157 | + <configuration> |
| 158 | + <source>${java.version}</source> |
| 159 | + <target>${java.version}</target> |
| 160 | + </configuration> |
| 161 | + </plugin> |
113 | 162 | <plugin> |
114 | 163 | <groupId>org.apache.maven.plugins</groupId> |
115 | 164 | <artifactId>maven-checkstyle-plugin</artifactId> |
116 | | - <version>3.1.0</version> |
| 165 | + <version>${maven-checkstyle-plugin.version}</version> |
117 | 166 | <configuration> |
118 | 167 | <configLocation>oss-checkstyle.xml</configLocation> |
119 | 168 | <sourceDirectories>${project.basedir}</sourceDirectories> |
|
0 commit comments