File tree Expand file tree Collapse file tree 4 files changed +15
-10
lines changed
examples/camunda7-embedded-starter-transaction
src/test/kotlin/dev/bpmcrafters/processengine/worker/itest/camunda7/external Expand file tree Collapse file tree 4 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
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 >
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 >
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments