Skip to content

Commit

Permalink
Merge pull request #821 from orkes-io/fix/dependency-coordinates
Browse files Browse the repository at this point in the history
Fixes + dependency upgrades
  • Loading branch information
jmigueprieto authored Dec 16, 2024
2 parents aefecb4 + 4214ec8 commit 6fe5010
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 19 deletions.
21 changes: 11 additions & 10 deletions 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 Expand Up @@ -328,18 +328,19 @@ Import TaskRunner to run the JavaScript worker.
``` javascript
import {
OrkesApiConfig,
orkesConductorClient,
TaskRunner,
TaskManager,
} from "@io-orkes/conductor-javascript";

orkesConductorClient({
keyId: process.env.CONDUCTOR_AUTH_KEY,
keySecret: process.env.CONDUCTOR_AUTH_SECRET,
serverUrl: process.env.CONDUCTOR_SERVER_URL,
}).then((client) =>
new TaskManager(client, [ myWorker ]).startPolling()
);
const config = {
serverUrl: "https://developer.orkescloud.com/api",
keyId: "_CHANGE_ME_",
keySecret: "_CHANGE_ME_",
};

const client = await orkesConductorClient(config);
const manager = new TaskManager(client, [worker]);
manager.startPolling();
```
</TabItem>
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
8 changes: 4 additions & 4 deletions docs/sdks/clojure.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ Orkes Conductor Clojure SDK is maintained here: https://github.com/conductor-sdk
### Leiningen/Boot

```clojure
[io.orkes/conductor-clojure "0.3.0"]
[io.orkes/conductor-clojure "0.3.1"]
```

### Clojure CLI/deps.edn

```clojure
io.orkes/conductor-clojure {:mvn/version "0.3.0"}
io.orkes/conductor-clojure {:mvn/version "0.3.1"}
```

### Gradle

```clojure
implementation("io.orkes:conductor-clojure:0.3.0")
implementation("io.orkes:conductor-clojure:0.3.1")
```

### Maven
Expand All @@ -35,7 +35,7 @@ implementation("io.orkes:conductor-clojure:0.3.0")
<dependency>
<groupId>io.orkes</groupId>
<artifactId>conductor-clojure</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
</dependency>
```

Expand Down

0 comments on commit 6fe5010

Please sign in to comment.