Skip to content

Commit

Permalink
Replaced deprecated usage of "classifier"
Browse files Browse the repository at this point in the history
  • Loading branch information
SaeedZhiany committed Jan 12, 2020
1 parent 4d4941f commit 991d174
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions time4j-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ task javadoc(type: Javadoc) {

task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
archiveClassifier.set("sources")
}

task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
archiveClassifier.set("javadoc")
from javadoc.destinationDir
}

Expand Down

0 comments on commit 991d174

Please sign in to comment.