Skip to content

Commit

Permalink
Merge pull request #278 from conductor-oss/fix/java-client-v4-sdk-coo…
Browse files Browse the repository at this point in the history
…rdinates

[Java Client v4] Fix artifact coordinates
  • Loading branch information
jmigueprieto authored Oct 8, 2024
2 parents 0366a58 + 58b6eb3 commit 1fed6c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ class PublishConfigPlugin implements Plugin<Project> {
private publicationConfig(Project project) {
return {
mavenJava(MavenPublication) {
if (project.ext.has('artifactId')) {
artifactId = project.ext.artifactId
}

from project.components.java
pom {
name = project.findProperty('artifactName')
Expand Down
1 change: 1 addition & 0 deletions conductor-clients/java/conductor-java-sdk/sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ plugins {
}

ext {
artifactId = 'java-sdk'
artifactName = 'Orkes Conductor SDK'
artifactDescription = 'OSS & Orkes Conductor SDK'
}
Expand Down

0 comments on commit 1fed6c3

Please sign in to comment.