Skip to content

Commit

Permalink
build: fix shadow JAR publication for modules with Maven publications.
Browse files Browse the repository at this point in the history
  • Loading branch information
outofcoffee committed Nov 17, 2023
1 parent 1882024 commit da549ff
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion mock/sfdc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ artifacts {
publishing {
publications {
maven(MavenPublication) {
from components.java
artifact shadowJar
artifact sourcesJar

repositories {
Expand Down
2 changes: 1 addition & 1 deletion mock/wiremock/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ artifacts {
publishing {
publications {
maven(MavenPublication) {
from components.java
artifact shadowJar
artifact sourcesJar

repositories {
Expand Down
2 changes: 1 addition & 1 deletion scripting/graalvm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ artifacts {
publishing {
publications {
maven(MavenPublication) {
from components.java
artifact shadowJar
artifact sourcesJar

repositories {
Expand Down
2 changes: 1 addition & 1 deletion store/dynamodb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ artifacts {
publishing {
publications {
maven(MavenPublication) {
from components.java
artifact shadowJar
artifact sourcesJar

repositories {
Expand Down
2 changes: 1 addition & 1 deletion store/redis/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ artifacts {
publishing {
publications {
maven(MavenPublication) {
from components.java
artifact shadowJar
artifact sourcesJar

repositories {
Expand Down

0 comments on commit da549ff

Please sign in to comment.