Skip to content

Commit f0cd482

Browse files
committed
fix dependencies
1 parent d910fc0 commit f0cd482

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

examples/camunda7-embedded-starter-transaction/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
<dependency>
8686
<groupId>io.holunda</groupId>
8787
<artifactId>camunda-platform-7-autologin</artifactId>
88-
<version>2026.02.1</version>
88+
<version>${c7.version}</version>
8989
</dependency>
9090
<dependency>
9191
<groupId>com.h2database</groupId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
<packaging>pom</packaging>
1919

2020
<properties>
21-
<spring-boot.version>3.5.7</spring-boot.version>
21+
<spring-boot.version>3.5.11</spring-boot.version>
2222
<process-engine-api.version>1.5</process-engine-api.version>
2323
<process-engine-adapters-c7.version>2025.11.1</process-engine-adapters-c7.version>
2424
<process-engine-adapters-c8.version>2025.11.1</process-engine-adapters-c8.version>
2525
<!-- TEST -->
2626
<mockito.version>6.2.3</mockito.version>
2727
<assertj.version>3.27.7</assertj.version>
2828
<camunda-bpm-spring-boot-starter-external-task-client.version>7.24.0</camunda-bpm-spring-boot-starter-external-task-client.version>
29-
<camunda-platform-7-rest-client-spring-boot-starter-feign.version>7.24.1</camunda-platform-7-rest-client-spring-boot-starter-feign.version>
29+
<c7.version>2026.02.1</c7.version>
3030
</properties>
3131

3232
<modules>

spring-boot-starter/pom.xml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,21 @@
55
<groupId>dev.bpm-crafters.process-engine-worker</groupId>
66
<artifactId>process-engine-worker-root</artifactId>
77
<version>0.7.2-SNAPSHOT</version>
8+
<relativePath>../pom.xml</relativePath>
89
</parent>
910

1011
<artifactId>process-engine-worker-spring-boot-starter</artifactId>
1112
<name>${project.artifactId}</name>
1213

1314
<dependencyManagement>
1415
<dependencies>
16+
<dependency>
17+
<groupId>org.testcontainers</groupId>
18+
<artifactId>testcontainers-bom</artifactId>
19+
<version>2.0.3</version>
20+
<scope>import</scope>
21+
<type>pom</type>
22+
</dependency>
1523
<dependency>
1624
<groupId>org.springframework.boot</groupId>
1725
<artifactId>spring-boot-dependencies</artifactId>
@@ -124,9 +132,9 @@
124132
<scope>test</scope>
125133
</dependency>
126134
<dependency>
127-
<groupId>org.camunda.community.rest</groupId>
128-
<artifactId>camunda-platform-7-rest-client-spring-boot-starter-feign</artifactId>
129-
<version>${camunda-platform-7-rest-client-spring-boot-starter-feign.version}</version>
135+
<groupId>io.holunda.c7</groupId>
136+
<artifactId>c7-rest-client-spring-boot-starter-feign</artifactId>
137+
<version>${c7.version}</version>
130138
<scope>test</scope>
131139
</dependency>
132140
</dependencies>
@@ -143,9 +151,6 @@
143151
<goal>kapt</goal>
144152
</goals>
145153
<configuration>
146-
<sourceDirs>
147-
<sourceDir>src/main/kotlin</sourceDir>
148-
</sourceDirs>
149154
<annotationProcessorPaths>
150155
<annotationProcessorPath>
151156
<groupId>org.springframework.boot</groupId>

spring-boot-starter/src/test/kotlin/dev/bpmcrafters/processengine/worker/itest/camunda7/external/ExternalTaskFailJobExceptionTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class ExternalTaskFailJobExceptionTest : AbstractTransactionalBehaviorTest() {
6363
await().atMost(30, SECONDS).untilAsserted {
6464
val task = getExternalTasks(pi)[0]
6565
assertThat(task.errorMessage).isEqualTo("Simulating a technical error for task ${task.id}")
66-
assertThat(task.retries).isEqualTo(3)
66+
assertThat(task.retries!!).isEqualTo(3)
6767
}
6868
assertThat(entityExistsForName(name)).isFalse
6969
}

0 commit comments

Comments
 (0)