Skip to content

Commit c5f7f6d

Browse files
committed
fixed build.gradle
1 parent d36886e commit c5f7f6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ repositories {
2424
}
2525

2626
task sourcesJar(type: Jar, dependsOn: classes) {
27-
classifier = 'sources'
27+
archiveClassifier = 'sources'
2828
from sourceSets.main.allSource
2929
}
3030

3131
task javadocJar(type: Jar, dependsOn: javadoc) {
32-
classifier = 'javadoc'
32+
archiveClassifier = 'javadoc'
3333
from javadoc.destinationDir
3434
}
3535

0 commit comments

Comments
 (0)