Skip to content

Commit

Permalink
Bump test dependency versions to compile on Java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Nov 28, 2023
1 parent 8832801 commit e4aaeab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class RunEveryTest {
@Test
public void testRunEvery() throws InterruptedException {
MutableInteger runCount = new MutableInteger();

// run every .5 secs
RunEvery runEvery = runEvery(millis(500L));
for (int i = 0; i < 12; i++) {
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<dependency>
<groupId>org.zeroturnaround</groupId>
<artifactId>zt-exec</artifactId>
<version>1.9</version>
<version>1.12</version>
</dependency>

<!-- testing -->
Expand All @@ -101,19 +101,19 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>4.11.0</version>
<version>5.4.0</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
<version>1.7.36</version>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
<version>1.2.12</version>
</dependency>

</dependencies>
Expand Down

0 comments on commit e4aaeab

Please sign in to comment.