Skip to content

Commit

Permalink
Update dependencies (unclebob#1461)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcnh authored Dec 1, 2023
1 parent 389bb59 commit a1930b1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,16 @@ dependencies {
exclude group:"org.apache.commons", module: "commons-lang3"
exclude group: 'org.slf4j', module: 'slf4j-api'
}
implementation "org.apache.commons:commons-lang3:3.12.0"
implementation "org.slf4j:slf4j-api:2.0.7"
implementation "org.slf4j:slf4j-jdk14:2.0.7"
implementation "org.json:json:20230618"
implementation "org.apache.commons:commons-lang3:3.14.0"
implementation "org.slf4j:slf4j-api:2.0.9"
implementation "org.slf4j:slf4j-jdk14:2.0.9"
implementation "org.json:json:20231013"
implementation "com.googlecode.java-diff-utils:diffutils:1.3.0"
implementation "org.apache.commons:commons-text:1.10.0"
implementation "org.apache.commons:commons-text:1.11.0"
implementation "org.openjdk.nashorn:nashorn-core:15.4"

compileOnly gradleApi()
compileOnly "org.apache.ant:ant:1.10.13"
compileOnly "org.apache.ant:ant:1.10.14"
compileOnly "junit:junit:4.13.2"

testImplementation gradleApi()
Expand Down
4 changes: 2 additions & 2 deletions test/fitnesse/slim/StackTraceEnricherTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
public class StackTraceEnricherTest {
private static final String JUNIT_JAR_PATTERN = "[junit";
private static final String RT_JAR = "rt.jar";
private static final String COMMONS_LANG_VERSION = "3.12.0";
private static final Pattern COMMONS_LANG_JAR = Pattern.compile("commons-lang3(-3.12.0)?.jar");
private static final String COMMONS_LANG_VERSION = "3.14.0";
private static final Pattern COMMONS_LANG_JAR = Pattern.compile("commons-lang3(-3.14.0)?.jar");

private Throwable exception;
private Throwable exceptionWithCause;
Expand Down

0 comments on commit a1930b1

Please sign in to comment.