Skip to content

Commit 2b810f4

Browse files
authored
Merge pull request #45 from amitrp/aph-15360_version_upgrades
aph-15360 upgrades
2 parents ed94b5e + 1f29af1 commit 2b810f4

File tree

4 files changed

+15
-20
lines changed

4 files changed

+15
-20
lines changed

java-collections/pom.xml

+4-9
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>com.google.guava</groupId>
2727
<artifactId>guava</artifactId>
28-
<version>31.1-jre</version>
28+
<version>33.4.0-jre</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>org.apache.commons</groupId>
@@ -35,22 +35,17 @@
3535
<dependency>
3636
<groupId>org.apache.commons</groupId>
3737
<artifactId>commons-lang3</artifactId>
38-
<version>3.12.0</version>
39-
</dependency>
40-
<dependency>
41-
<groupId>junit</groupId>
42-
<artifactId>junit</artifactId>
43-
<version>4.13.2</version>
38+
<version>3.17.0</version>
4439
</dependency>
4540
<dependency>
4641
<groupId>org.testng</groupId>
4742
<artifactId>testng</artifactId>
48-
<version>7.7.1</version>
43+
<version>7.10.2</version>
4944
</dependency>
5045
<dependency>
5146
<groupId>org.assertj</groupId>
5247
<artifactId>assertj-core</artifactId>
53-
<version>3.23.1</version>
48+
<version>3.27.3</version>
5449
</dependency>
5550
<dependency>
5651
<groupId>org.hamcrest</groupId>

java-io/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@
2121
<dependency>
2222
<groupId>commons-io</groupId>
2323
<artifactId>commons-io</artifactId>
24-
<version>2.11.0</version>
24+
<version>2.18.0</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>com.google.guava</groupId>
2828
<artifactId>guava</artifactId>
29-
<version>31.1-jre</version>
29+
<version>33.4.0-jre</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>com.fasterxml.jackson.core</groupId>
3333
<artifactId>jackson-databind</artifactId>
34-
<version>2.14.0</version>
34+
<version>2.18.2</version>
3535
</dependency>
3636
</dependencies>
3737
</project>

java-streams/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,22 @@
2121
<dependency>
2222
<groupId>com.google.guava</groupId>
2323
<artifactId>guava</artifactId>
24-
<version>31.1-jre</version>
24+
<version>33.4.0-jre</version>
2525
</dependency>
2626
<dependency>
27-
<groupId>pl.touk</groupId>
27+
<groupId>com.pivovarit</groupId>
2828
<artifactId>throwing-function</artifactId>
29-
<version>1.3</version>
29+
<version>1.6.1</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>one.util</groupId>
3333
<artifactId>streamex</artifactId>
34-
<version>0.8.1</version>
34+
<version>0.8.3</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>org.jooq</groupId>
3838
<artifactId>jool</artifactId>
39-
<version>0.9.14</version>
39+
<version>0.9.15</version>
4040
</dependency>
4141
</dependencies>
4242
</project>

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<groupId>org.projectlombok</groupId>
2424
<artifactId>lombok</artifactId>
2525
<optional>true</optional>
26-
<version>1.18.24</version>
26+
<version>1.18.36</version>
2727
</dependency>
2828
</dependencies>
2929
</dependencyManagement>
@@ -32,15 +32,15 @@
3232
<plugin>
3333
<groupId>org.apache.maven.plugins</groupId>
3434
<artifactId>maven-compiler-plugin</artifactId>
35-
<version>3.10.1</version>
35+
<version>3.13.0</version>
3636
<configuration>
3737
<release>${java.version}</release>
3838
</configuration>
3939
</plugin>
4040
<plugin>
4141
<groupId>com.diffplug.spotless</groupId>
4242
<artifactId>spotless-maven-plugin</artifactId>
43-
<version>2.43.0</version>
43+
<version>2.44.2</version>
4444
<configuration>
4545
<java>
4646
<includes>

0 commit comments

Comments
 (0)