Skip to content

Commit

Permalink
Adding classes before trying 8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
aowss committed Apr 23, 2024
1 parent 6023f35 commit c9dc111
Show file tree
Hide file tree
Showing 24 changed files with 2,122 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/docker-compose-core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
- ZEEBE_BROKER_DATA_DISKUSAGECOMMANDWATERMARK=0.998
- ZEEBE_BROKER_DATA_DISKUSAGEREPLICATIONWATERMARK=0.999
- "JAVA_TOOL_OPTIONS=-Xms512m -Xmx512m"
restart: unless-stopped
restart: always
healthcheck:
test: [ "CMD-SHELL", "timeout 10s bash -c ':> /dev/tcp/127.0.0.1/9600' || exit 1" ]
interval: 30s
Expand Down Expand Up @@ -129,7 +129,7 @@ services:
memlock:
soft: -1
hard: -1
restart: unless-stopped
restart: always
healthcheck:
test: [ "CMD-SHELL", "curl -f http://localhost:9200/_cat/health | grep -q green" ]
interval: 30s
Expand Down
58 changes: 58 additions & 0 deletions spring-boot/cancellation/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.micasa.tutorial</groupId>
<artifactId>camunda-spring-boot</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>

<artifactId>camunda-spring-boot-cancellation</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>cancellation</name>
<packaging>jar</packaging>

<properties>
<tasklist-client.version>8.4.0.7</tasklist-client.version>
<testcontainers.version>1.19.7</testcontainers.version>
</properties>

<dependencies>
<dependency>
<groupId>io.camunda.connector</groupId>
<artifactId>spring-boot-starter-camunda-connectors</artifactId>
<version>${camunda.version}</version>
</dependency>
<dependency>
<groupId>io.camunda.connector</groupId>
<artifactId>connector-http-json</artifactId>
<version>${camunda.version}</version>
</dependency>
<dependency>
<groupId>io.camunda.connector</groupId>
<artifactId>connector-test</artifactId>
<version>${camunda.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.camunda</groupId>
<artifactId>camunda-tasklist-client-java</artifactId>
<version>${tasklist-client.version}</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>
Loading

0 comments on commit c9dc111

Please sign in to comment.