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.
2 parents 0bffdac + 7dcd741 commit 189a4d9Copy full SHA for 189a4d9
dropbox-sdk-java/build.gradle
@@ -215,18 +215,17 @@ jar {
215
}
216
217
task jarWithoutOsgi(type: Jar, dependsOn: classes) {
218
- classifier 'withoutOsgi'
+ archiveClassifier.set('withoutOsgi')
219
from sourceSets.main.output
220
221
222
task sourcesJar(type: Jar, dependsOn: classes) {
223
- classifier = 'sources'
+ archiveClassifier.set('sources')
224
from sourceSets.main.allSource
225
226
227
-
228
task javadocJar(type: Jar, dependsOn: javadoc) {
229
- classifier = 'javadoc'
+ archiveClassifier.set('javadoc')
230
from javadoc.destinationDir
231
232
0 commit comments