Skip to content

Commit bf6b9d2

Browse files
committed
Fix build
1 parent 174344a commit bf6b9d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,17 +111,17 @@ tasks.withType(Jar) {
111111
}
112112

113113
task apiJar(type: Jar) {
114-
//classifier "api-dev"
114+
archiveClassifier = "api-dev"
115115
from sourceSets.api.output
116116
}
117117

118118
task remapApiJar(type: RemapJarTask) {
119-
//classifier "api"
119+
archiveClassifier = "api"
120120

121121
input = apiJar.archiveFile.get().asFile
122122
addNestedDependencies = false
123123
}
124-
//prepareRemapApiJar.dependsOn(apiJar)
124+
remapApiJar.dependsOn(apiJar)
125125

126126
// configure the maven publication
127127
publishing {

0 commit comments

Comments
 (0)