Skip to content

Commit

Permalink
fix: Attempt to fix publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasz.gryzbon committed Feb 27, 2022
1 parent 81a3b45 commit 2cb9080
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ task javadocJar(type: Jar) {
from javadoc
}

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

subprojects {

Expand All @@ -30,6 +30,9 @@ subprojects {
version = "$version"

from components.java
artifact sourcesJar
artifact javadocJar

pom {
name = project.name
description = 'A set of Spring exception handlers making sure the application always returns a consistent error response.'
Expand Down

0 comments on commit 2cb9080

Please sign in to comment.