|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<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/maven-v4_0_0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 5 | <modelVersion>4.0.0</modelVersion> |
4 | 6 |
|
5 | 7 | <parent> |
6 | 8 | <groupId>io.scalecube</groupId> |
7 | | - <artifactId>scalecube-parent-pom</artifactId> |
8 | | - <version>0.2.19</version> |
| 9 | + <artifactId>scalecube-parent</artifactId> |
| 10 | + <version>0.2.20</version> |
9 | 11 | </parent> |
10 | 12 |
|
11 | 13 | <artifactId>scalecube-services-parent</artifactId> |
|
57 | 59 | </scm> |
58 | 60 |
|
59 | 61 | <properties> |
60 | | - <scalecube-cluster.version>2.6.12</scalecube-cluster.version> |
61 | | - <scalecube-commons.version>1.0.18</scalecube-commons.version> |
62 | | - <scalecube-security.version>1.0.24</scalecube-security.version> |
| 62 | + <scalecube-cluster.version>2.6.13</scalecube-cluster.version> |
| 63 | + <scalecube-commons.version>1.0.21</scalecube-commons.version> |
| 64 | + <scalecube-security.version>1.0.28</scalecube-security.version> |
63 | 65 |
|
64 | | - <reactor.version>2020.0.10</reactor.version> |
65 | | - <jackson.version>2.11.0</jackson.version> |
66 | | - <rsocket.version>1.0.5</rsocket.version> |
| 66 | + <reactor.version>2020.0.23</reactor.version> |
| 67 | + <jackson.version>2.13.3</jackson.version> |
| 68 | + <rsocket.version>1.1.3</rsocket.version> |
67 | 69 | <protostuff.version>1.6.0</protostuff.version> |
68 | | - <slf4j.version>1.7.30</slf4j.version> |
69 | | - <log4j.version>2.13.2</log4j.version> |
| 70 | + <slf4j.version>1.7.36</slf4j.version> |
| 71 | + <log4j.version>2.17.2</log4j.version> |
70 | 72 | <disruptor.version>3.4.2</disruptor.version> |
71 | | - <netty.version>4.1.66.Final</netty.version> |
72 | | - <snakeyaml.version>1.26</snakeyaml.version> |
73 | | - |
74 | 73 | <jsr305.version>3.0.2</jsr305.version> |
75 | 74 | <jctools.version>2.1.2</jctools.version> |
76 | | - <junit.version>5.1.1</junit.version> |
77 | | - <mockito.version>2.24.5</mockito.version> |
| 75 | + |
| 76 | + <mockito-junit-jupiter.version>4.6.1</mockito-junit-jupiter.version> |
| 77 | + <junit-jupiter.version>5.8.2</junit-jupiter.version> |
78 | 78 | <hamcrest.version>1.3</hamcrest.version> |
| 79 | + |
| 80 | + <distributionManagement.url>https://maven.pkg.github.com/scalecube/scalecube-services |
| 81 | + </distributionManagement.url> |
79 | 82 | </properties> |
80 | 83 |
|
81 | 84 | <modules> |
|
89 | 92 | </modules> |
90 | 93 |
|
91 | 94 | <dependencyManagement> |
92 | | - |
93 | 95 | <dependencies> |
94 | 96 | <!-- Scalecube commons --> |
95 | 97 | <dependency> |
|
198 | 200 | <artifactId>jctools-core</artifactId> |
199 | 201 | <version>${jctools.version}</version> |
200 | 202 | </dependency> |
201 | | - |
202 | | - <!-- Enforcer / Netty --> |
203 | | - <dependency> |
204 | | - <groupId>io.netty</groupId> |
205 | | - <artifactId>netty-buffer</artifactId> |
206 | | - <version>${netty.version}</version> |
207 | | - </dependency> |
208 | | - <dependency> |
209 | | - <groupId>io.netty</groupId> |
210 | | - <artifactId>netty-common</artifactId> |
211 | | - <version>${netty.version}</version> |
212 | | - </dependency> |
213 | | - |
214 | | - <!-- Yaml --> |
215 | | - <dependency> |
216 | | - <groupId>org.yaml</groupId> |
217 | | - <artifactId>snakeyaml</artifactId> |
218 | | - <version>${snakeyaml.version}</version> |
219 | | - </dependency> |
220 | 203 | </dependencies> |
221 | 204 | </dependencyManagement> |
222 | 205 |
|
|
225 | 208 | <dependency> |
226 | 209 | <groupId>org.junit.jupiter</groupId> |
227 | 210 | <artifactId>junit-jupiter-engine</artifactId> |
228 | | - <version>${junit.version}</version> |
| 211 | + <version>${junit-jupiter.version}</version> |
229 | 212 | <scope>test</scope> |
230 | 213 | </dependency> |
231 | 214 | <dependency> |
232 | 215 | <groupId>org.junit.jupiter</groupId> |
233 | 216 | <artifactId>junit-jupiter-params</artifactId> |
234 | | - <version>${junit.version}</version> |
| 217 | + <version>${junit-jupiter.version}</version> |
235 | 218 | <scope>test</scope> |
236 | 219 | </dependency> |
237 | 220 | <dependency> |
238 | 221 | <groupId>org.mockito</groupId> |
239 | 222 | <artifactId>mockito-junit-jupiter</artifactId> |
240 | | - <version>${mockito.version}</version> |
| 223 | + <version>${mockito-junit-jupiter.version}</version> |
241 | 224 | <scope>test</scope> |
242 | 225 | </dependency> |
243 | 226 | <dependency> |
|
246 | 229 | <version>${hamcrest.version}</version> |
247 | 230 | <scope>test</scope> |
248 | 231 | </dependency> |
249 | | - <dependency> |
250 | | - <groupId>org.hamcrest</groupId> |
251 | | - <artifactId>hamcrest-core</artifactId> |
252 | | - <version>${hamcrest.version}</version> |
253 | | - <scope>test</scope> |
254 | | - </dependency> |
255 | 232 | <dependency> |
256 | 233 | <groupId>io.projectreactor</groupId> |
257 | 234 | <artifactId>reactor-test</artifactId> |
|
278 | 255 | </pluginRepository> |
279 | 256 | </pluginRepositories> |
280 | 257 |
|
281 | | - <profiles> |
282 | | - <profile> |
283 | | - <id>deploy2Github</id> |
284 | | - <distributionManagement> |
285 | | - <repository> |
286 | | - <id>github</id> |
287 | | - <name>GitHub Packages</name> |
288 | | - <url>https://maven.pkg.github.com/scalecube/scalecube-services</url> |
289 | | - </repository> |
290 | | - </distributionManagement> |
291 | | - </profile> |
292 | | - <profile> |
293 | | - <id>deploy2Maven</id> |
294 | | - <distributionManagement> |
295 | | - <repository> |
296 | | - <id>ossrh</id> |
297 | | - <name>Central Repository OSSRH</name> |
298 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
299 | | - </repository> |
300 | | - </distributionManagement> |
301 | | - <build> |
302 | | - <plugins> |
303 | | - <plugin> |
304 | | - <groupId>org.sonatype.plugins</groupId> |
305 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
306 | | - </plugin> |
307 | | - <plugin> |
308 | | - <artifactId>maven-source-plugin</artifactId> |
309 | | - </plugin> |
310 | | - <plugin> |
311 | | - <artifactId>maven-javadoc-plugin</artifactId> |
312 | | - </plugin> |
313 | | - <plugin> |
314 | | - <artifactId>maven-gpg-plugin</artifactId> |
315 | | - </plugin> |
316 | | - </plugins> |
317 | | - </build> |
318 | | - </profile> |
319 | | - </profiles> |
320 | | - |
321 | 258 | </project> |
0 commit comments