Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sbraconnier committed Sep 11, 2022
1 parent 6c47d8c commit 214b033
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions buildSrc/src/main/java/org/jodconverter/Deps.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public class Deps {
// Compile
// ~~~~~~~~~~~~~~~~~~~~~~~~~~
// Latest version -> https://mvnrepository.com/artifact/org.checkerframework/checker-qual
public static final String checkerQual = "org.checkerframework:checker-qual:3.22.1";
public static final String checkerQual = "org.checkerframework:checker-qual:3.25.0";

// Main
// ~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand All @@ -18,7 +18,7 @@ public class Deps {

// Spring Boot libraries
// Latest version -> https://mvnrepository.com/artifact/org.springframework.boot/spring-boot
public static final String springBootVersion = "2.7.0";
public static final String springBootVersion = "2.7.3";
public static final String springBootDependencies =
"org.springframework.boot:spring-boot-dependencies:" + springBootVersion;
public static final String springBootStarter = "org.springframework.boot:spring-boot-starter";
Expand All @@ -28,7 +28,7 @@ public class Deps {
"org.springframework.boot:spring-boot-starter-test";

// Latest version -> https://mvnrepository.com/artifact/org.libreoffice
public static final String loVersion = "7.3.3";
public static final String loVersion = "7.4.0";
public static final String libreoffice = "org.libreoffice:libreoffice:" + loVersion;

// Latest version -> https://mvnrepository.com/artifact/org.openoffice
Expand Down
7 changes: 6 additions & 1 deletion gradle/java-config.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ dependencies {
testImplementation Deps.junitJupiterParams
testImplementation Deps.mockito

testRuntimeOnly Deps.checkerQual // Required by PowerMock
// Required for Mockito to avoid NullPointerException
// Mockito disclaimer:
// You are seeing this disclaimer because Mockito is configured to create inlined mocks.
// You can learn about inline mocks and their limitations under item #39 of the Mockito class javadoc.
testRuntimeOnly Deps.checkerQual

testRuntimeOnly Deps.junitJupiterEngine
}

Expand Down

0 comments on commit 214b033

Please sign in to comment.