Skip to content

Commit f4094ec

Browse files
authored
Updated parent, updated dependencies (#828)
1 parent 65c6f84 commit f4094ec

File tree

1 file changed

+22
-85
lines changed

1 file changed

+22
-85
lines changed

pom.xml

Lines changed: 22 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
<?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">
35
<modelVersion>4.0.0</modelVersion>
46

57
<parent>
68
<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>
911
</parent>
1012

1113
<artifactId>scalecube-services-parent</artifactId>
@@ -57,25 +59,26 @@
5759
</scm>
5860

5961
<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>
6365

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>
6769
<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>
7072
<disruptor.version>3.4.2</disruptor.version>
71-
<netty.version>4.1.66.Final</netty.version>
72-
<snakeyaml.version>1.26</snakeyaml.version>
73-
7473
<jsr305.version>3.0.2</jsr305.version>
7574
<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>
7878
<hamcrest.version>1.3</hamcrest.version>
79+
80+
<distributionManagement.url>https://maven.pkg.github.com/scalecube/scalecube-services
81+
</distributionManagement.url>
7982
</properties>
8083

8184
<modules>
@@ -89,7 +92,6 @@
8992
</modules>
9093

9194
<dependencyManagement>
92-
9395
<dependencies>
9496
<!-- Scalecube commons -->
9597
<dependency>
@@ -198,25 +200,6 @@
198200
<artifactId>jctools-core</artifactId>
199201
<version>${jctools.version}</version>
200202
</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>
220203
</dependencies>
221204
</dependencyManagement>
222205

@@ -225,19 +208,19 @@
225208
<dependency>
226209
<groupId>org.junit.jupiter</groupId>
227210
<artifactId>junit-jupiter-engine</artifactId>
228-
<version>${junit.version}</version>
211+
<version>${junit-jupiter.version}</version>
229212
<scope>test</scope>
230213
</dependency>
231214
<dependency>
232215
<groupId>org.junit.jupiter</groupId>
233216
<artifactId>junit-jupiter-params</artifactId>
234-
<version>${junit.version}</version>
217+
<version>${junit-jupiter.version}</version>
235218
<scope>test</scope>
236219
</dependency>
237220
<dependency>
238221
<groupId>org.mockito</groupId>
239222
<artifactId>mockito-junit-jupiter</artifactId>
240-
<version>${mockito.version}</version>
223+
<version>${mockito-junit-jupiter.version}</version>
241224
<scope>test</scope>
242225
</dependency>
243226
<dependency>
@@ -246,12 +229,6 @@
246229
<version>${hamcrest.version}</version>
247230
<scope>test</scope>
248231
</dependency>
249-
<dependency>
250-
<groupId>org.hamcrest</groupId>
251-
<artifactId>hamcrest-core</artifactId>
252-
<version>${hamcrest.version}</version>
253-
<scope>test</scope>
254-
</dependency>
255232
<dependency>
256233
<groupId>io.projectreactor</groupId>
257234
<artifactId>reactor-test</artifactId>
@@ -278,44 +255,4 @@
278255
</pluginRepository>
279256
</pluginRepositories>
280257

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-
321258
</project>

0 commit comments

Comments
 (0)