Skip to content

Commit 68ca8ce

Browse files
author
cube
committed
Fix unit test. Upgrade dependencies.
1 parent e1d6e78 commit 68ca8ce

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

pom.xml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
<dependency>
2020
<groupId>org.antlr</groupId>
2121
<artifactId>antlr4-runtime</artifactId>
22-
<version>4.9.3</version>
22+
<version>4.13.1</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>org.freemarker</groupId>
2626
<artifactId>freemarker</artifactId>
27-
<version>2.3.31</version>
27+
<version>2.3.32</version>
2828
</dependency>
2929

3030
<dependency>
@@ -35,24 +35,24 @@
3535
<dependency>
3636
<groupId>commons-io</groupId>
3737
<artifactId>commons-io</artifactId>
38-
<version>2.11.0</version>
38+
<version>2.16.1</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>org.junit.jupiter</groupId>
4242
<artifactId>junit-jupiter-api</artifactId>
43-
<version>5.9.2</version>
43+
<version>5.10.2</version>
4444
<scope>test</scope>
4545
</dependency>
4646
<dependency>
4747
<groupId>org.junit.jupiter</groupId>
4848
<artifactId>junit-jupiter-params</artifactId>
49-
<version>5.9.2</version>
49+
<version>5.10.2</version>
5050
<scope>test</scope>
5151
</dependency>
5252
<dependency>
5353
<groupId>org.junit.jupiter</groupId>
5454
<artifactId>junit-jupiter-engine</artifactId>
55-
<version>5.9.2</version>
55+
<version>5.10.2</version>
5656
<scope>test</scope>
5757
</dependency>
5858

@@ -78,20 +78,20 @@
7878
<dependency>
7979
<groupId>org.apache.logging.log4j</groupId>
8080
<artifactId>log4j-api</artifactId>
81-
<version>2.20.0</version>
81+
<version>2.23.1</version>
8282
</dependency>
8383
<dependency>
8484
<groupId>org.apache.logging.log4j</groupId>
8585
<artifactId>log4j-core</artifactId>
86-
<version>2.20.0</version>
86+
<version>2.23.1</version>
8787
<scope>runtime</scope>
8888
</dependency>
8989

9090
<!-- https://mvnrepository.com/artifact/net.sf.saxon/Saxon-HE -->
9191
<dependency>
9292
<groupId>net.sf.saxon</groupId>
9393
<artifactId>Saxon-HE</artifactId>
94-
<version>12.3</version>
94+
<version>12.4</version>
9595
</dependency>
9696

9797
</dependencies>
@@ -103,7 +103,7 @@
103103
<plugin>
104104
<groupId>org.antlr</groupId>
105105
<artifactId>antlr4-maven-plugin</artifactId>
106-
<version>4.3</version>
106+
<version>4.13.1</version>
107107
</plugin>
108108
<plugin>
109109
<groupId>org.apache.maven.plugins</groupId>
@@ -124,7 +124,7 @@
124124
<plugin>
125125
<groupId>org.antlr</groupId>
126126
<artifactId>antlr4-maven-plugin</artifactId>
127-
<version>4.9</version>
127+
<version>4.13.1</version>
128128
<executions>
129129
<execution>
130130
<id>antlr</id>
@@ -138,7 +138,7 @@
138138
<plugin>
139139
<groupId>org.apache.maven.plugins</groupId>
140140
<artifactId>maven-jar-plugin</artifactId>
141-
<version>3.2.0</version>
141+
<version>3.3.0</version>
142142
<configuration>
143143
<archive>
144144
<index>true</index>
@@ -161,7 +161,7 @@
161161
<plugin>
162162
<groupId>org.apache.maven.plugins</groupId>
163163
<artifactId>maven-dependency-plugin</artifactId>
164-
<version>3.1.2</version>
164+
<version>3.6.1</version>
165165
<executions>
166166
<execution>
167167
<id>copy-dependencies</id>
@@ -214,13 +214,13 @@
214214
<plugin>
215215
<groupId>org.apache.maven.plugins</groupId>
216216
<artifactId>maven-surefire-plugin</artifactId>
217-
<version>3.0.0</version>
217+
<version>3.2.5</version>
218218
</plugin>
219219

220220
<plugin>
221221
<groupId>org.apache.maven.plugins</groupId>
222222
<artifactId>maven-assembly-plugin</artifactId>
223-
<version>3.3.0</version>
223+
<version>3.7.1</version>
224224
<configuration>
225225
<descriptors>
226226
<descriptor>src/assembly/src.xml</descriptor>
@@ -240,7 +240,7 @@
240240
<plugin>
241241
<groupId>org.apache.maven.plugins</groupId>
242242
<artifactId>maven-checkstyle-plugin</artifactId>
243-
<version>3.1.2</version>
243+
<version>3.3.1</version>
244244
<configuration>
245245
<configLocation>checkstyle.xml</configLocation>
246246
<encoding>UTF-8</encoding>
@@ -263,7 +263,7 @@
263263
<plugin>
264264
<groupId>org.jacoco</groupId>
265265
<artifactId>jacoco-maven-plugin</artifactId>
266-
<version>0.8.9</version>
266+
<version>0.8.12</version>
267267
<executions>
268268

269269
<execution>
@@ -317,7 +317,7 @@
317317
<plugin>
318318
<groupId>org.apache.maven.plugins</groupId>
319319
<artifactId>maven-compiler-plugin</artifactId>
320-
<version>2.3.2</version>
320+
<version>3.13.0</version>
321321
<configuration>
322322
<showDeprecation>true</showDeprecation>
323323
</configuration>

src/test/java/com/chaudhuri/ooliteaddonscanner2/ExpansionCacheTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ public class ExpansionCacheTest {
3232

3333
private static File tempCacheDir;
3434

35-
private static final String testDownload = "https://dlcdn.apache.org//commons/cli/binaries/commons-cli-1.6.0-bin.tar.gz";
36-
private static final String testDownloadPath = "dlcdn.apache.org//commons/cli/binaries/commons-cli-1.6.0-bin.tar.gz";
35+
private static final String testDownload = "https://dlcdn.apache.org//commons/cli/binaries/commons-cli-1.7.0-bin.tar.gz";
36+
private static final String testDownloadPath = "dlcdn.apache.org//commons/cli/binaries/commons-cli-1.7.0-bin.tar.gz";
3737

3838
public ExpansionCacheTest() {
3939
}

0 commit comments

Comments
 (0)