Skip to content

Commit c34b567

Browse files
ibbempmbittner
authored andcommitted
Update dependencies
This fixes a security hole in zip4j. Note: Updates where found using `mvn versions:display-dependency-updates`
1 parent f6728c5 commit c34b567

1 file changed

Lines changed: 12 additions & 10 deletions

File tree

pom.xml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<plugin>
2121
<groupId>org.apache.maven.plugins</groupId>
2222
<artifactId>maven-javadoc-plugin</artifactId>
23-
<version>3.4.0</version>
23+
<version>3.4.1</version>
2424
<configuration>
2525
<reportOutputDirectory>docs</reportOutputDirectory>
2626
<destDir>javadoc</destDir>
@@ -30,7 +30,7 @@
3030
<plugin>
3131
<groupId>org.apache.maven.plugins</groupId>
3232
<artifactId>maven-compiler-plugin</artifactId>
33-
<version>3.8.1</version>
33+
<version>3.10.1</version>
3434
<configuration>
3535
<source>16</source>
3636
<target>16</target>
@@ -40,7 +40,7 @@
4040
<plugin>
4141
<groupId>org.apache.maven.plugins</groupId>
4242
<artifactId>maven-surefire-plugin</artifactId>
43-
<version>3.0.0-M7</version>
43+
<version>3.0.0-M8</version>
4444
<configuration>
4545
<includes>
4646
<include>**/*.java</include>
@@ -50,7 +50,9 @@
5050

5151
<!-- To build jar with dependencies-->
5252
<plugin>
53+
<groupId>org.apache.maven.plugins</groupId>
5354
<artifactId>maven-assembly-plugin</artifactId>
55+
<version>3.4.2</version>
5456
<executions>
5557
<execution>
5658
<phase>package</phase>
@@ -101,13 +103,13 @@
101103
<dependency>
102104
<groupId>net.lingala.zip4j</groupId>
103105
<artifactId>zip4j</artifactId>
104-
<version>2.10.0</version>
106+
<version>2.11.5</version>
105107
</dependency>
106108

107109
<dependency>
108110
<groupId>org.eclipse.jgit</groupId>
109111
<artifactId>org.eclipse.jgit</artifactId>
110-
<version>5.11.1.202105131744-r</version>
112+
<version>6.4.0.202211300538-r</version>
111113
</dependency>
112114

113115
<dependency>
@@ -119,30 +121,30 @@
119121
<dependency>
120122
<groupId>org.tinylog</groupId>
121123
<artifactId>tinylog-api</artifactId>
122-
<version>2.4.1</version>
124+
<version>2.6.1</version>
123125
</dependency>
124126
<dependency>
125127
<groupId>org.tinylog</groupId>
126128
<artifactId>tinylog-impl</artifactId>
127-
<version>2.4.1</version>
129+
<version>2.6.1</version>
128130
</dependency>
129131

130132
<dependency>
131133
<groupId>org.apache.maven.plugins</groupId>
132134
<artifactId>maven-compiler-plugin</artifactId>
133-
<version>3.8.1</version>
135+
<version>3.11.0</version>
134136
</dependency>
135137

136138
<dependency>
137139
<groupId>org.junit.jupiter</groupId>
138140
<artifactId>junit-jupiter-engine</artifactId>
139-
<version>5.9.1</version>
141+
<version>5.9.2</version>
140142
<scope>test</scope>
141143
</dependency>
142144
<dependency>
143145
<groupId>org.junit.jupiter</groupId>
144146
<artifactId>junit-jupiter</artifactId>
145-
<version>5.9.1</version>
147+
<version>5.9.2</version>
146148
<scope>test</scope>
147149
</dependency>
148150
</dependencies>

0 commit comments

Comments
 (0)