Skip to content

Commit

Permalink
fix signing
Browse files Browse the repository at this point in the history
  • Loading branch information
tisoft committed Jan 14, 2018
1 parent abfa990 commit 3388cf5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions asciidoctorj-distribution/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ if ( !project.hasProperty('skip.signing') ) {
signPom.enabled = false
}

configurations.archives.with {
//We need to remove the (non-existing) jar artifact, otherwise signing will fail
artifacts.removeAll{ it.type.equals("jar") }
}

tasks.withType(AbstractArchiveTask) {
baseName rootProject.name
classifier 'bin' // use classifier for identification in repository list
Expand Down

0 comments on commit 3388cf5

Please sign in to comment.