Skip to content

Commit

Permalink
fix: Attempt to fix signing of published artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasz.gryzbon committed Feb 27, 2022
1 parent 3e35533 commit 00a25ff
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions publishing.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
//bootJar {
// enabled = false
//}

jar {
enabled = true
classifier = ""
Expand All @@ -19,8 +15,8 @@ task javadocJar(type: Jar) {

artifacts {
archives jar
// archives sourcesJar
// archives javadocJar
archives sourcesJar
archives javadocJar
}

subprojects {
Expand All @@ -34,8 +30,8 @@ subprojects {
version = "$version"

from components.java
// artifact sourcesJar
// artifact javadocJar
artifact sourcesJar
artifact javadocJar
pom {
name = rootProject.name
description = 'A set of Spring exception handlers making sure the application always returns a consistent error response.'
Expand Down

0 comments on commit 00a25ff

Please sign in to comment.