Skip to content

Commit bb6122e

Browse files
authored
Merge pull request #144 from bpm-crafters/dependabot/maven/process-engine-api.version-1.5
build(deps): bump process-engine-api.version from 1.4 to 1.5
2 parents 23d9385 + a485f84 commit bb6122e

File tree

7 files changed

+19
-25
lines changed

7 files changed

+19
-25
lines changed

engine-adapter/c7-embedded-spring-boot-starter/pom.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,6 @@
9191
<goal>kapt</goal>
9292
</goals>
9393
<configuration>
94-
<sourceDirs>
95-
<sourceDir>src/main/kotlin</sourceDir>
96-
</sourceDirs>
9794
<annotationProcessorPaths>
9895
<annotationProcessorPath>
9996
<groupId>org.springframework.boot</groupId>

engine-adapter/c7-remote-core/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@
3232
<optional>true</optional>
3333
</dependency>
3434
<dependency>
35-
<groupId>org.camunda.community.rest</groupId>
36-
<artifactId>camunda-platform-7-rest-client-spring-boot-openapi</artifactId>
37-
<version>${camunda-platform-7-rest-client.version}</version>
35+
<groupId>io.holunda.c7</groupId>
36+
<artifactId>c7-rest-client-spring-boot-openapi</artifactId>
37+
<version>${c7.version}</version>
3838
<scope>provided</scope>
3939
</dependency>
4040
<dependency>
41-
<groupId>org.camunda.community.rest</groupId>
42-
<artifactId>camunda-platform-7-rest-client-variables</artifactId>
43-
<version>${camunda-platform-7-rest-client.version}</version>
41+
<groupId>io.holunda.c7</groupId>
42+
<artifactId>c7-rest-client-variables</artifactId>
43+
<version>${c7.version}</version>
4444
<scope>provided</scope>
4545
</dependency>
4646
<dependency>

engine-adapter/c7-remote-core/src/test/kotlin/dev/bpmcrafters/processengineapi/adapter/c7/remote/task/delivery/pull/PullServiceTaskDeliveryThreadingTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ internal class PullServiceTaskDeliveryThreadingTest {
6565
private val executingTaskHandlers = LinkedBlockingQueue<TaskHandler>()
6666

6767
private inner class TestTaskHandlerImpl : TaskHandler {
68-
override fun accept(taskInformation: TaskInformation, variables: Map<String, Any>) {
68+
override fun accept(taskInformation: TaskInformation, variables: Map<String, Any?>) {
6969
synchronized(this) {
7070
executingTaskHandlers.offer(this)
7171
wait()

engine-adapter/c7-remote-spring-boot-starter/pom.xml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646

4747
<!-- Use for Camunda REST API by provided Feign Client -->
4848
<dependency>
49-
<groupId>org.camunda.community.rest</groupId>
50-
<artifactId>camunda-platform-7-rest-client-spring-boot-starter-feign</artifactId>
51-
<version>${camunda-platform-7-rest-client.version}</version>
49+
<groupId>io.holunda.c7</groupId>
50+
<artifactId>c7-rest-client-spring-boot-starter-feign</artifactId>
51+
<version>${c7.version}</version>
5252
<scope>provided</scope>
5353
</dependency>
5454

@@ -73,9 +73,6 @@
7373
<goal>kapt</goal>
7474
</goals>
7575
<configuration>
76-
<sourceDirs>
77-
<sourceDir>src/main/kotlin</sourceDir>
78-
</sourceDirs>
7976
<annotationProcessorPaths>
8077
<annotationProcessorPath>
8178
<groupId>org.springframework.boot</groupId>

examples/java-c7-embedded/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
<scope>test</scope>
6161
</dependency>
6262
<dependency>
63-
<groupId>org.camunda.community.process_test_coverage</groupId>
64-
<artifactId>camunda-process-test-coverage-junit5-platform-7</artifactId>
65-
<version>3.0.1</version>
63+
<groupId>io.holunda.c7</groupId>
64+
<artifactId>c7-process-test-coverage-junit5</artifactId>
65+
<version>${c7.version}</version>
6666
<scope>test</scope>
6767
</dependency>
6868
<dependency>

examples/java-c7-remote/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525

2626
<!-- Feign REST Client -->
2727
<dependency>
28-
<groupId>org.camunda.community.rest</groupId>
29-
<artifactId>camunda-platform-7-rest-client-spring-boot-starter-feign</artifactId>
30-
<version>${camunda-platform-7-rest-client.version}</version>
28+
<groupId>io.holunda.c7</groupId>
29+
<artifactId>c7-rest-client-spring-boot-starter-feign</artifactId>
30+
<version>${c7.version}</version>
3131
</dependency>
3232

3333
<!-- Official Camunda Client -->

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020
<properties>
2121
<!-- COMMON GLOBAL -->
22-
<spring-boot.version>3.5.7</spring-boot.version>
23-
<process-engine-api.version>1.4</process-engine-api.version>
24-
<camunda-platform-7-rest-client.version>7.24.1</camunda-platform-7-rest-client.version>
22+
<spring-boot.version>3.5.10</spring-boot.version>
23+
<process-engine-api.version>1.5</process-engine-api.version>
24+
<c7.version>2025.12.2</c7.version>
2525
<!-- TEST -->
2626
<mockito.version>6.2.3</mockito.version>
2727
<assertj.version>3.27.7</assertj.version>

0 commit comments

Comments
 (0)