Skip to content

Commit f8740e7

Browse files
committed
Merge branch 'release/1.0'
2 parents d5611ba + a8370e9 commit f8740e7

File tree

4 files changed

+23
-9
lines changed

4 files changed

+23
-9
lines changed

README.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ and tries to achieve to support migrations with minimal (or even no) code modifi
1717
The library contains of the following Maven modules:
1818

1919
- `process-engine-api`: pure API written in Kotlin (100% Java-compatible)
20-
- `process-engine-api-impl`: commons implementation, which are independent of the selected engine
20+
- `process-engine-api-impl`: commons implementation, which is independent of the selected engine and can be used for adapter implementations.
2121

2222
## API
2323

@@ -33,10 +33,23 @@ The API consists of different parts independent of each other.
3333

3434
The Task API provides functionality to deal with service tasks. The task handlers can be registered and get invoked when tasks
3535
appear in the process engine. Since the Task API allows asynchronous processing, we provide a special API to complete tasks.
36+
37+
## Available Adapters
3638

3739
If you want to try the API, please refer to one of the adapter implementations matching your infrastructure. For example:
3840

39-
- https://github.com/bpm-crafters/process-engine-adapters-camunda-7
40-
- https://github.com/bpm-crafters/process-engine-adapters-camunda-8
41+
- [Camunda Platform 7 Adapter](https://github.com/bpm-crafters/process-engine-adapters-camunda-7)
42+
- [Camunda Platform 8 Adapter](https://github.com/bpm-crafters/process-engine-adapters-camunda-8)
43+
44+
## Worker
45+
46+
If you are using the Process Engine API to provide workers using Spring Boot, there is a library with improved support for it:
47+
48+
- [Process Engine Worker](https://github.com/bpm-crafters/process-engine-worker)
49+
50+
## Contribution and Development
51+
52+
If you are missing a feature or found a bug, please [open an issue](https://github.com/bpm-crafters/process-engine-api/issues)
53+
on this project and provide a pull request. If you have general questions, make sure to stop by our [discussions](https://github.com/orgs/bpm-crafters/discussions).
4154

4255

api-impl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>dev.bpm-crafters.process-engine-api</groupId>
77
<artifactId>process-engine-api-root</artifactId>
8-
<version>0.9.0</version>
8+
<version>1.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>dev.bpm-crafters.process-engine-api</groupId>
66
<artifactId>process-engine-api-root</artifactId>
7-
<version>0.9.0</version>
7+
<version>1.0</version>
88
</parent>
99

1010
<artifactId>process-engine-api</artifactId>

pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<parent>
66
<groupId>dev.bpm-crafters.maven.parent</groupId>
77
<artifactId>maven-parent</artifactId>
8-
<version>2025.01.1</version>
8+
<version>2025.04.1</version>
99
<relativePath/>
1010
</parent>
1111

1212
<groupId>dev.bpm-crafters.process-engine-api</groupId>
1313
<artifactId>process-engine-api-root</artifactId>
14-
<version>0.9.0</version>
14+
<version>1.0</version>
1515
<name>POM: Project root</name>
1616
<description>Process Engine API</description>
1717
<url>https://github.com/bpm-crafters/process-engine-api/</url>
@@ -20,6 +20,7 @@
2020
<properties>
2121
<!-- COMMON GLOBAL -->
2222
<spring-boot.version>3.4.4</spring-boot.version>
23+
<slf4j.version>2.0.17</slf4j.version>
2324
<!-- TEST -->
2425
<mockito.version>5.4.0</mockito.version>
2526
<assertj.version>3.27.3</assertj.version>
@@ -47,12 +48,12 @@
4748
<dependency>
4849
<groupId>org.slf4j</groupId>
4950
<artifactId>slf4j-api</artifactId>
50-
<version>2.0.17</version>
51+
<version>${slf4j.version}</version>
5152
</dependency>
5253
<dependency>
5354
<groupId>org.slf4j</groupId>
5455
<artifactId>slf4j-simple</artifactId>
55-
<version>2.0.17</version>
56+
<version>${slf4j.version}</version>
5657
</dependency>
5758
</dependencies>
5859
</dependencyManagement>

0 commit comments

Comments
 (0)