Skip to content

Commit 944c91e

Browse files
committed
maven: update dependencies to 1.6.1
1 parent b06fdd0 commit 944c91e

File tree

5 files changed

+35
-17
lines changed

5 files changed

+35
-17
lines changed

client/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>io.netifi.proteus.quickstart</groupId>
88
<artifactId>proteus-quickstart</artifactId>
9-
<version>1.6.0</version>
9+
<version>1.6.1</version>
1010
</parent>
1111

1212
<artifactId>client</artifactId>
1313
<name>client</name>
14-
<version>1.6.0</version>
14+
<version>1.6.1</version>
1515
<packaging>jar</packaging>
1616

1717
<dependencies>
@@ -51,6 +51,7 @@
5151
<version>1.6.0</version>
5252
<configuration>
5353
<mainClass>io.netifi.proteus.quickstart.client.Main</mainClass>
54+
<cleanupDaemonThreads>false</cleanupDaemonThreads>
5455
</configuration>
5556
</plugin>
5657
</plugins>

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.7'
33

44
services:
55
broker1:
6-
image: netifi/proteus:1.6.0
6+
image: netifi/proteus:1.6.1
77
restart: always
88
networks:
99
- netifi

pom.xml

Lines changed: 28 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>io.netifi.proteus.quickstart</groupId>
55
<artifactId>proteus-quickstart</artifactId>
6-
<version>1.6.0</version>
6+
<version>1.6.1</version>
77
<packaging>pom</packaging>
88
<name>multi</name>
99

@@ -16,32 +16,49 @@
1616
<properties>
1717
<maven.compiler.target>1.8</maven.compiler.target>
1818
<maven.compiler.source>1.8</maven.compiler.source>
19+
<log4j2Version>2.11.2</log4j2Version>
20+
<proteusBomVersion>1.6.1</proteusBomVersion>
1921
<protobufVersion>3.6.1</protobufVersion>
22+
<rsocketVersion>0.11.17.2</rsocketVersion>
2023
<rsocketRpcVersion>0.2.13.3</rsocketRpcVersion>
2124
</properties>
2225

2326
<dependencyManagement>
2427
<dependencies>
2528
<dependency>
2629
<groupId>io.netifi.proteus</groupId>
27-
<artifactId>proteus-rsocket-bom</artifactId>
28-
<version>1.6.0</version>
30+
<artifactId>proteus-bom</artifactId>
31+
<version>${proteusBomVersion}</version>
2932
<type>pom</type>
3033
<scope>import</scope>
3134
</dependency>
3235
<dependency>
33-
<groupId>io.netifi.proteus</groupId>
34-
<artifactId>proteus-bom</artifactId>
35-
<version>1.6.0</version>
36+
<groupId>org.apache.logging.log4j</groupId>
37+
<artifactId>log4j-bom</artifactId>
38+
<version>${log4j2Version}</version>
3639
<type>pom</type>
3740
<scope>import</scope>
3841
</dependency>
42+
3943
<dependency>
40-
<groupId>io.netifi.proteus</groupId>
41-
<artifactId>proteus-common-dependencies</artifactId>
42-
<version>1.6.0</version>
43-
<type>pom</type>
44-
<scope>import</scope>
44+
<groupId>com.google.protobuf</groupId>
45+
<artifactId>protobuf-java</artifactId>
46+
<version>${protobufVersion}</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>io.rsocket</groupId>
50+
<artifactId>rsocket-core</artifactId>
51+
<version>${rsocketVersion}</version>
52+
</dependency>
53+
<dependency>
54+
<groupId>io.rsocket</groupId>
55+
<artifactId>rsocket-transport-netty</artifactId>
56+
<version>${rsocketVersion}</version>
57+
</dependency>
58+
<dependency>
59+
<groupId>io.rsocket.rpc</groupId>
60+
<artifactId>rsocket-rpc-core</artifactId>
61+
<version>${rsocketRpcVersion}</version>
4562
</dependency>
4663
</dependencies>
4764
</dependencyManagement>

service-idl/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<parent>
88
<groupId>io.netifi.proteus.quickstart</groupId>
99
<artifactId>proteus-quickstart</artifactId>
10-
<version>1.6.0</version>
10+
<version>1.6.1</version>
1111
</parent>
1212

1313
<artifactId>service-idl</artifactId>
1414
<name>service-idl</name>
15-
<version>1.6.0</version>
15+
<version>1.6.1</version>
1616
<packaging>jar</packaging>
1717

1818
<dependencies>

service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.netifi.proteus.quickstart</groupId>
88
<artifactId>proteus-quickstart</artifactId>
9-
<version>1.6.0</version>
9+
<version>1.6.1</version>
1010
</parent>
1111

1212
<artifactId>service</artifactId>

0 commit comments

Comments
 (0)