Skip to content

Commit

Permalink
Fix deprecated classifier
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed May 10, 2024
1 parent dc5c6f2 commit 6047115
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions IOIOLibCore/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ javadoc {
}

task javadocJar(type: Jar) {
classifier = 'javadoc'
archiveClassifier = 'javadoc'
from javadoc
}

task sourcesJar(type: Jar) {
classifier = 'sources'
archiveClassifier = 'sources'
from sourceSets.main.allSource
}

Expand Down
4 changes: 2 additions & 2 deletions IOIOLibPC/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ javadoc {
}

task javadocJar(type: Jar) {
classifier = 'javadoc'
archiveClassifier = 'javadoc'
from javadoc
}

task sourcesJar(type: Jar) {
classifier = 'sources'
archiveClassifier = 'sources'
from sourceSets.main.allSource
}

Expand Down

0 comments on commit 6047115

Please sign in to comment.