Skip to content

Commit d7221d5

Browse files
committed
Update Kryo and Maven Assembly Plugin versions
The pom.xml file was updated to use the latest versions of Kryo and the Maven Assembly Plugin. This also includes the exclusion of the older Kryo version from the kryo-serializers dependency.
1 parent 447ca4f commit d7221d5

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

modules/cli-module/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,20 @@
9090
<dependency>
9191
<groupId>com.esotericsoftware</groupId>
9292
<artifactId>kryo</artifactId>
93-
<version>5.0.0-RC1</version>
93+
<version>5.6.0</version>
9494
<scope>compile</scope>
9595
</dependency>
9696
<dependency><!-- adds support for deserializing UnmodifiableCollection -->
9797
<groupId>de.javakaffee</groupId>
9898
<artifactId>kryo-serializers</artifactId>
9999
<version>0.45</version>
100100
<scope>compile</scope>
101+
<exclusions>
102+
<exclusion>
103+
<groupId>com.esotericsoftware</groupId>
104+
<artifactId>kryo</artifactId>
105+
</exclusion>
106+
</exclusions>
101107
</dependency>
102108

103109
<!-- Logging -->
@@ -189,7 +195,7 @@
189195
<plugin>
190196
<groupId>org.apache.maven.plugins</groupId>
191197
<artifactId>maven-assembly-plugin</artifactId>
192-
<version>3.1.0</version>
198+
<version>3.7.1</version>
193199
<configuration>
194200
<descriptors>
195201
<descriptor>src/assembly/standalone-cli-descriptor.xml</descriptor>
-60.3 KB
Binary file not shown.
-86.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)