We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21a5041 commit fa9b2cfCopy full SHA for fa9b2cf
build.gradle
@@ -43,6 +43,9 @@ dependencies {
43
exclude group: 'com.ibm.icu', module: 'icu4j'
44
}
45
antlr "org.antlr:antlr4:$antlr4Version"
46
+
47
+ testImplementation("junit:junit:4.13.2")
48
+ testImplementation("org.opentest4j:opentest4j:1.3.0")
49
50
51
task sourcesJar(type: Jar) {
@@ -110,7 +113,7 @@ signing {
110
113
def signingKey = findProperty("signingKey")
111
114
def signingPassword = findProperty("signingPassword")
112
115
useInMemoryPgpKeys(signingKey, signingPassword)
- sign publishing.publications.mavenJava
116
+ sign publishing.publications.maven
117
118
119
0 commit comments