Skip to content

Commit d632e4f

Browse files
committed
versions bumps
1 parent a2fcef5 commit d632e4f

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

pom.xml

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
<java.version>8</java.version>
1515
<maven.compiler.source>${java.version}</maven.compiler.source>
1616
<maven.compiler.target>${java.version}</maven.compiler.target>
17+
<maven.surefire.plugin.version>3.2.5</maven.surefire.plugin.version>
18+
<maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version>
19+
<maven.assembly.plugin.version>3.7.1</maven.assembly.plugin.version>
1720
</properties>
1821

1922
<developers>
@@ -48,7 +51,7 @@
4851
<dependency>
4952
<groupId>org.yaml</groupId>
5053
<artifactId>snakeyaml</artifactId>
51-
<version>1.15</version>
54+
<version>2.2</version>
5255
</dependency>
5356
<dependency>
5457
<groupId>org.javassist</groupId>
@@ -59,7 +62,7 @@
5962
<dependency>
6063
<groupId>junit</groupId>
6164
<artifactId>junit</artifactId>
62-
<version>4.11</version>
65+
<version>4.13.2</version>
6366
<type>jar</type>
6467
<scope>test</scope>
6568
</dependency>
@@ -70,9 +73,9 @@
7073
<scope>test</scope>
7174
</dependency>
7275
<dependency>
73-
<groupId>log4j</groupId>
74-
<artifactId>log4j</artifactId>
75-
<version>1.2.17</version>
76+
<groupId>ch.qos.reload4j</groupId>
77+
<artifactId>reload4j</artifactId>
78+
<version>1.2.26</version>
7679
<type>jar</type>
7780
</dependency>
7881
</dependencies>
@@ -82,7 +85,7 @@
8285
<plugin>
8386
<groupId>org.apache.maven.plugins</groupId>
8487
<artifactId>maven-surefire-plugin</artifactId>
85-
<version>2.19</version>
88+
<version>${maven.surefire.plugin.version}</version>
8689
<configuration>
8790
<excludes>
8891
<exclude>**/*Integration*Test.java</exclude>
@@ -92,15 +95,17 @@
9295
<plugin>
9396
<groupId>org.apache.maven.plugins</groupId>
9497
<artifactId>maven-compiler-plugin</artifactId>
95-
<version>2.5.1</version>
98+
<version>${maven.compiler.plugin.version}</version>
9699
<configuration>
97-
<source>8</source>
98-
<target>8</target>
100+
<source>${maven.compiler.source}</source>
101+
<target>${maven.compiler.target}</target>
99102
</configuration>
100103
</plugin>
101104

102105
<plugin>
106+
<groupId>org.apache.maven.plugins</groupId>
103107
<artifactId>maven-assembly-plugin</artifactId>
108+
<version>${maven.assembly.plugin.version}</version>
104109
<configuration>
105110
<archive>
106111
<manifestEntries>

0 commit comments

Comments
 (0)