Skip to content

Commit

Permalink
Fix: Packaging jars without -plain archiveClassifier (#152)
Browse files Browse the repository at this point in the history
Regression of the spring boot update released in springwolf 0.10.3

Current artifact name: springwolf-kafka-0.10.3-plain.jar
Should be (previous behaviour): springwolf-kafka-0.10.3.jar

Relates to: #136

(cherry picked from commit f5c69ef)
  • Loading branch information
timonback committed Mar 8, 2024
1 parent c1f8dd0 commit d834aaf
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ dependencies {
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}

jar.enabled = true
jar {
enabled = true
archiveClassifier = ''
}
bootJar.enabled = false

java {
Expand Down
5 changes: 4 additions & 1 deletion springwolf-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ dependencies {
testImplementation 'org.springframework.kafka:spring-kafka'
}

jar.enabled = true
jar {
enabled = true
archiveClassifier = ''
}
bootJar.enabled = false

java {
Expand Down
5 changes: 4 additions & 1 deletion springwolf-plugins/springwolf-amqp-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ dependencies {
testImplementation 'org.assertj:assertj-core:3.23.1'
}

jar.enabled = true
jar {
enabled = true
archiveClassifier = ''
}
bootJar.enabled = false

java {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ dependencies {
testImplementation('org.apache.kafka:kafka-streams:3.3.1')
}

jar.enabled = true
jar {
enabled = true
archiveClassifier = ''
}
bootJar.enabled = false

java {
Expand Down
5 changes: 4 additions & 1 deletion springwolf-plugins/springwolf-kafka-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ dependencies {
testImplementation 'org.assertj:assertj-core:3.23.1'
}

jar.enabled = true
jar {
enabled = true
archiveClassifier = ''
}
bootJar.enabled = false

java {
Expand Down

0 comments on commit d834aaf

Please sign in to comment.