Skip to content

Commit

Permalink
Update to Zeebe 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasschaefer committed Apr 9, 2022
1 parent f78e17a commit 6c1ceac
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ You have the following options to integrate the Zeebe integration:

Add the dependency to the build.gradle file:
```groovy
implementation("info.novatec:micronaut-zeebe-client-feature:1.6.0")
implementation("info.novatec:micronaut-zeebe-client-feature:8.0.0")
```
</details>

Expand All @@ -86,7 +86,7 @@ You have the following options to integrate the Zeebe integration:
<dependency>
<groupId>info.novatec</groupId>
<artifactId>micronaut-zeebe-client-feature</artifactId>
<version>1.6.0</version>
<version>8.0.0</version>
</dependency>
<!-- workaround for https://github.com/camunda-community-hub/micronaut-zeebe-client/issues/88 -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kotlinVersion=1.6.10
micronautVersion=3.4.1
micronautApplicationPluginVersion=3.3.2
micronautLibraryPluginVersion=3.3.2
zeebeVersion=1.3.5
zeebeVersion=8.0.0
shadowJarVersion=7.1.2
# Prevent upload of maven-metadata.xml.sha256/sha512 files to oss.sonatype.org
# see https://issues.sonatype.org/browse/OSSRH-53695?focusedCommentId=887733&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-887733
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class TestcontainersIntegrationTest {

@Container
ZeebeContainer zeebeContainer = new ZeebeContainer(DockerImageName.parse("camunda/zeebe:1.3.5"));
ZeebeContainer zeebeContainer = new ZeebeContainer(DockerImageName.parse("camunda/zeebe:8.0.0"));

@Test
@Timeout(value = 5, unit = TimeUnit.MINUTES)
Expand Down
6 changes: 3 additions & 3 deletions micronaut-zeebe-server-example/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
gateway:
restart: always
container_name: gateway
image: camunda/zeebe:1.3.5
image: camunda/zeebe:8.0.0
environment:
- ZEEBE_LOG_LEVEL=debug
- ZEEBE_STANDALONE_GATEWAY=true
Expand All @@ -23,7 +23,7 @@ services:
- zeebe_network
node0:
container_name: zeebe_broker_1
image: camunda/zeebe:1.3.5
image: camunda/zeebe:8.0.0
environment:
- ZEEBE_LOG_LEVEL=debug
- ZEEBE_BROKER_CLUSTER_NODEID=0
Expand All @@ -35,7 +35,7 @@ services:
- zeebe_network
node1:
container_name: zeebe_broker_2
image: camunda/zeebe:1.3.5
image: camunda/zeebe:8.0.0
environment:
- ZEEBE_LOG_LEVEL=debug
- ZEEBE_BROKER_CLUSTER_NODEID=1
Expand Down

0 comments on commit 6c1ceac

Please sign in to comment.