Skip to content
This repository was archived by the owner on Jun 11, 2025. It is now read-only.

Commit b9a0094

Browse files
committed
Merge branch 'release/2.0.1'
2 parents 4a89342 + 0787636 commit b9a0094

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

examples/basic-junit4/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.holunda.testing</groupId>
88
<artifactId>camunda-bpm-jgiven-examples</artifactId>
9-
<version>2.0.0</version>
9+
<version>2.0.1</version>
1010
</parent>
1111

1212
<artifactId>camunda-bpm-jgiven-examples-basic-junit4</artifactId>

examples/basic-junit5/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.holunda.testing</groupId>
88
<artifactId>camunda-bpm-jgiven-examples</artifactId>
9-
<version>2.0.0</version>
9+
<version>2.0.1</version>
1010
</parent>
1111

1212
<artifactId>camunda-bpm-jgiven-examples-basic-junit5</artifactId>

examples/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
<parent>
77
<groupId>io.holunda.testing</groupId>
88
<artifactId>camunda-bpm-jgiven-parent</artifactId>
9-
<version>2.0.0</version>
9+
<version>2.0.1</version>
1010
</parent>
1111

1212
<artifactId>camunda-bpm-jgiven-examples</artifactId>
1313
<packaging>pom</packaging>
1414

1515
<properties>
16-
<spring-boot.version>3.4.1</spring-boot.version>
17-
<camunda-process-test-coverage.version>2.7.0</camunda-process-test-coverage.version>
16+
<spring-boot.version>3.4.5</spring-boot.version>
17+
<camunda-process-test-coverage.version>2.8.1</camunda-process-test-coverage.version>
1818
<camunda-platform-7-mockito.version>7.22.0</camunda-platform-7-mockito.version>
1919
<junit.version>4.13.2</junit.version>
2020
</properties>

extension/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.holunda.testing</groupId>
88
<artifactId>camunda-bpm-jgiven-parent</artifactId>
9-
<version>2.0.0</version>
9+
<version>2.0.1</version>
1010
</parent>
1111

1212
<artifactId>camunda-bpm-jgiven</artifactId>

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>io.holunda.testing</groupId>
77
<artifactId>camunda-bpm-jgiven-parent</artifactId>
8-
<version>2.0.0</version>
8+
<version>2.0.1</version>
99
<packaging>pom</packaging>
1010

1111

@@ -16,12 +16,12 @@
1616

1717
<properties>
1818
<camunda.version>7.22.0</camunda.version>
19-
<jgiven.version>2.0.1</jgiven.version>
20-
<assertj.version>3.27.2</assertj.version>
21-
<jgiven-kotlin.version>2.0.1.0</jgiven-kotlin.version>
19+
<jgiven.version>2.0.2</jgiven.version>
20+
<assertj.version>3.27.3</assertj.version>
21+
<jgiven-kotlin.version>2.0.2.0</jgiven-kotlin.version>
2222

2323
<java.version>17</java.version>
24-
<kotlin.version>2.1.0</kotlin.version>
24+
<kotlin.version>2.1.20</kotlin.version>
2525
<kotlin.compiler.incremental>true</kotlin.compiler.incremental>
2626
<kotlin.compiler.jvmTarget>${java.version}</kotlin.compiler.jvmTarget>
2727
<maven.compiler.source>${java.version}</maven.compiler.source>
@@ -141,14 +141,14 @@
141141
<!-- cleaning -->
142142
<groupId>org.apache.maven.plugins</groupId>
143143
<artifactId>maven-clean-plugin</artifactId>
144-
<version>3.4.0</version>
144+
<version>3.4.1</version>
145145
</plugin>
146146

147147
<plugin>
148148
<!-- java compiler -->
149149
<groupId>org.apache.maven.plugins</groupId>
150150
<artifactId>maven-compiler-plugin</artifactId>
151-
<version>3.13.0</version>
151+
<version>3.14.0</version>
152152
<configuration>
153153
<encoding>UTF-8</encoding>
154154
<source>${java.version}</source>
@@ -183,13 +183,13 @@
183183
<plugin>
184184
<groupId>org.apache.maven.plugins</groupId>
185185
<artifactId>maven-surefire-plugin</artifactId>
186-
<version>3.5.2</version>
186+
<version>3.5.3</version>
187187
</plugin>
188188

189189
<plugin>
190190
<groupId>org.apache.maven.plugins</groupId>
191191
<artifactId>maven-failsafe-plugin</artifactId>
192-
<version>3.5.2</version>
192+
<version>3.5.3</version>
193193
</plugin>
194194

195195
<plugin>
@@ -381,7 +381,7 @@
381381
<!-- Deploy -->
382382
<plugin>
383383
<artifactId>maven-deploy-plugin</artifactId>
384-
<version>3.1.3</version>
384+
<version>3.1.4</version>
385385
<configuration>
386386
<skip>true</skip>
387387
</configuration>
@@ -409,7 +409,7 @@
409409
<!-- Install -->
410410
<plugin>
411411
<artifactId>maven-install-plugin</artifactId>
412-
<version>3.1.3</version>
412+
<version>3.1.4</version>
413413
</plugin>
414414

415415
</plugins>

0 commit comments

Comments
 (0)