Skip to content

Commit

Permalink
add explicit dependency to JUnit, which is not bundled anymore in 2024.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bjansen-caps committed Nov 25, 2024
1 parent 4e1f2b9 commit 9ed0025
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ dependencies {
exclude group: 'com.ibm.icu', module: 'icu4j'
}
antlr "org.antlr:antlr4:$antlr4Version"

testImplementation("junit:junit:4.13.2")
}

task sourcesJar(type: Jar) {
Expand Down Expand Up @@ -110,7 +112,7 @@ signing {
def signingKey = findProperty("signingKey")
def signingPassword = findProperty("signingPassword")
useInMemoryPgpKeys(signingKey, signingPassword)
sign publishing.publications.mavenJava
sign publishing.publications.maven
}
}

Expand Down

0 comments on commit 9ed0025

Please sign in to comment.