Skip to content

Commit fa9b2cf

Browse files
bjansenbjansen-caps
authored andcommitted
add explicit dependency to JUnit, which is not bundled anymore in 2024.3
1 parent 21a5041 commit fa9b2cf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ dependencies {
4343
exclude group: 'com.ibm.icu', module: 'icu4j'
4444
}
4545
antlr "org.antlr:antlr4:$antlr4Version"
46+
47+
testImplementation("junit:junit:4.13.2")
48+
testImplementation("org.opentest4j:opentest4j:1.3.0")
4649
}
4750

4851
task sourcesJar(type: Jar) {
@@ -110,7 +113,7 @@ signing {
110113
def signingKey = findProperty("signingKey")
111114
def signingPassword = findProperty("signingPassword")
112115
useInMemoryPgpKeys(signingKey, signingPassword)
113-
sign publishing.publications.mavenJava
116+
sign publishing.publications.maven
114117
}
115118
}
116119

0 commit comments

Comments
 (0)