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

Commit 3849762

Browse files
committed
Merge branch 'release/7.24.0'
2 parents eaa3fc3 + f55b768 commit 3849762

File tree

6 files changed

+23
-16
lines changed

6 files changed

+23
-16
lines changed

.github/workflows/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818

1919
- name: Set up JDK 17
20-
uses: actions/setup-java@v4
20+
uses: actions/setup-java@v5
2121
with:
2222
distribution: zulu
2323
cache: maven

.github/workflows/master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111

1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515

1616
- name: Set up JDK 17
17-
uses: actions/setup-java@v4
17+
uses: actions/setup-java@v5
1818
with:
1919
distribution: zulu
2020
cache: maven

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
# Camunda Platform 7 Engine API
22

3-
A small extract of the API layer from the greatest process engine ever.
3+
> A small extract of the API layer from the greatest process engine ever.
44
55
[![stable](https://img.shields.io/badge/lifecycle-STABLE-green.svg)](https://github.com/holisticon#open-source-lifecycle)
66
[![Camunda 7.23](https://img.shields.io/badge/Camunda%20Version-7.23-orange.svg)](https://docs.camunda.org/manual/7.23/)
77
[![Build Status](https://github.com/holunda-io/camunda-bpm-api/actions/workflows/default.yml/badge.svg)](https://github.com/holunda-io/camunda-bpm-api/actions/workflows/default.yml)
88
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.holunda.camunda-api/camunda-bpm-engine-api/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.holunda.camunda-api/camunda-bpm-engine-api)
99

10+
# Relocation
11+
12+
This project is **relocated** to https://github.com/holunda-io/c7 and **will be developed** further there.
13+
Last release produced from this location will be **7.24**
14+
This repository will be archived in October 2025.
15+
16+
1017
## What is this?
1118

1219
Sometimes for building libraries it is useful to have the API only, without the implementation. This library extracts the official Java Camunda Engine API from Camunda JAR and packages it as a small JAR. By doing so, we had to provide very few own classes, to cut the track to implementation. It is by **NO MEANS** a replacement, but just a bunch of classes which may be required on the classpath, if you use a library referencing Camunda BPM classes (but not using them).

dmn-engine/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.holunda.camunda-api</groupId>
77
<artifactId>camunda-api-parent</artifactId>
8-
<version>7.23.0</version>
8+
<version>7.24.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.holunda.camunda-api</groupId>
66
<artifactId>camunda-api-parent</artifactId>
7-
<version>7.23.0</version>
7+
<version>7.24.0</version>
88
<name>${project.artifactId}</name>
99
<description>Camunda BPM Engine API</description>
1010
<url>https://github.com/holunda-io/camunda-bpm-api/</url>
@@ -18,7 +18,7 @@
1818
<maven.compiler.source>${java.version}</maven.compiler.source>
1919
<maven.compiler.target>${java.version}</maven.compiler.target>
2020

21-
<camunda-engine.version>7.23.0</camunda-engine.version>
21+
<camunda-engine.version>7.24.0</camunda-engine.version>
2222
</properties>
2323

2424
<modules>
@@ -66,14 +66,14 @@
6666
<!-- cleaning -->
6767
<groupId>org.apache.maven.plugins</groupId>
6868
<artifactId>maven-clean-plugin</artifactId>
69-
<version>3.4.1</version>
69+
<version>3.5.0</version>
7070
</plugin>
7171

7272
<plugin>
7373
<!-- Java compiler -->
7474
<groupId>org.apache.maven.plugins</groupId>
7575
<artifactId>maven-compiler-plugin</artifactId>
76-
<version>3.14.0</version>
76+
<version>3.14.1</version>
7777
<configuration>
7878
<encoding>${project.build.sourceEncoding}</encoding>
7979
<source>${maven.compiler.source}</source>
@@ -84,7 +84,7 @@
8484
<plugin>
8585
<groupId>org.apache.maven.plugins</groupId>
8686
<artifactId>maven-dependency-plugin</artifactId>
87-
<version>3.8.1</version>
87+
<version>3.9.0</version>
8888
<executions>
8989
<!--
9090
<execution>
@@ -118,7 +118,7 @@
118118
<plugin>
119119
<groupId>org.codehaus.mojo</groupId>
120120
<artifactId>build-helper-maven-plugin</artifactId>
121-
<version>3.6.0</version>
121+
<version>3.6.1</version>
122122
<executions>
123123
<execution>
124124
<phase>generate-sources</phase>
@@ -143,7 +143,7 @@
143143
<plugin>
144144
<groupId>org.apache.maven.plugins</groupId>
145145
<artifactId>maven-javadoc-plugin</artifactId>
146-
<version>3.11.2</version>
146+
<version>3.12.0</version>
147147
<configuration>
148148
<failOnWarnings>false</failOnWarnings>
149149
<failOnError>false</failOnError>
@@ -201,7 +201,7 @@
201201
<plugin>
202202
<groupId>org.apache.maven.plugins</groupId>
203203
<artifactId>maven-gpg-plugin</artifactId>
204-
<version>3.2.7</version>
204+
<version>3.2.8</version>
205205
<configuration>
206206
<gpgArguments>
207207
<arg>--batch</arg>
@@ -263,7 +263,7 @@
263263
<plugin>
264264
<groupId>org.apache.maven.plugins</groupId>
265265
<artifactId>maven-enforcer-plugin</artifactId>
266-
<version>3.5.0</version>
266+
<version>3.6.2</version>
267267
<executions>
268268
<execution>
269269
<id>enforce-maven</id>

process-engine/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.holunda.camunda-api</groupId>
77
<artifactId>camunda-api-parent</artifactId>
8-
<version>7.23.0</version>
8+
<version>7.24.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)