Skip to content

Commit

Permalink
classifier -> archiveClassifier
Browse files Browse the repository at this point in the history
  • Loading branch information
neotheprogramist committed Nov 20, 2023
1 parent c2e9c86 commit b833428
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,13 @@ allprojects {

task sourcesJar(type: Jar, dependsOn: classes) {
archiveBaseName = 'besu-verkle.trie'
classifier = 'sources'
archiveClassifier = 'sources'
from sourceSets.main.allSource
}

task javadocJar(type: Jar, dependsOn: javadoc) {
archiveBaseName = 'besu-verkle.trie'
classifier = 'javadoc'
archiveClassifier = 'javadoc'
from javadoc.destinationDir
}

Expand Down

0 comments on commit b833428

Please sign in to comment.