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 committed Dec 10, 2024
1 parent 6aae25b commit 1988feb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ dependencies {
exclude group: 'com.ibm.icu', module: 'icu4j'
}
antlr "org.antlr:antlr4:$antlr4Version"

testImplementation("junit:junit:4.13.2")
testImplementation("org.opentest4j:opentest4j:1.3.0")
}

task sourcesJar(type: Jar) {
Expand Down Expand Up @@ -110,7 +113,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 1988feb

Please sign in to comment.