Skip to content

Commit

Permalink
Fix and upgrade coordinates of java dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jmigueprieto committed Dec 13, 2024
1 parent aefecb4 commit bcfcd93
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/developer-guides/using-workers.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ implementation 'io.orkes.conductor:orkes-conductor-client:4.0.1'
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>io.orkes</groupId>
<groupId>io.orkes.conductor</groupId>
<artifactId>orkes-conductor-client</artifactId>
<version>4.0.1</version>
</dependency>
Expand Down
16 changes: 11 additions & 5 deletions docs/getting-started/quickstart-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,9 @@ In the `build.gradle` file, add the following dependencies.

``` java
dependencies {
implementation 'org.conductoross:conductor-client:4.0.0'
implementation 'io.orkes:orkes-conductor-client:4.0.0'
implementation 'org.conductoross:conductor-client:4.0.1'
implementation 'org.conductoross:java-sdk:4.0.1'
implementation 'io.orkes.conductor:orkes-conductor-client:4.0.1'
}
```

Expand All @@ -111,12 +112,17 @@ In the `pom.xml` file, add the following dependencies.
<dependency>
<groupId>org.conductoross</groupId>
<artifactId>conductor-client</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>io.orkes</groupId>
<groupId>org.conductoross</groupId>
<artifactId>java-sdk</artifactId>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>io.orkes.conductor</groupId>
<artifactId>orkes-conductor-client</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
</dependency>
```

Expand Down

0 comments on commit bcfcd93

Please sign in to comment.