Skip to content

Commit

Permalink
Merge branch 'release/7.21.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
rohwerj committed Apr 16, 2024
2 parents 5f6543e + 67b6b06 commit 106e40c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 18 deletions.
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
A small extract of the API layer from the greatest process engine ever.

[![stable](https://img.shields.io/badge/lifecycle-STABLE-green.svg)](https://github.com/holisticon#open-source-lifecycle)
[![Camunda 7.20](https://img.shields.io/badge/Camunda%20Version-7.20-orange.svg)]([https://github.com/holisticon#open-source-lifecycle](https://docs.camunda.org/manual/7.20/))
[![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)
[![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)

Expand Down Expand Up @@ -33,7 +34,7 @@ If you just want to start using the library, put the following dependency into y
<dependency>
<groupId>io.holunda.camunda-api</groupId>
<artifactId>camunda-bpm-engine-api</artifactId>
<version>7.18.0</version>
<version>7.20.0</version>
</dependency>
```

Expand All @@ -43,34 +44,34 @@ If you are interested in using the DMN engine API only, put the following depend
<dependency>
<groupId>io.holunda.camunda-api</groupId>
<artifactId>camunda-dmn-engine-api</artifactId>
<version>7.18.0</version>
<version>7.20.0</version>
</dependency>
```


If you are using Gradle Kotlin DSL add to your `build.gradle.kts`:

```kotlin
implementation("io.holunda.camunda-api:camunda-bpm-engine-api:7.18.0")
implementation("io.holunda.camunda-api:camunda-bpm-engine-api:7.20.0")
```

and for DMN only:

```kotlin
implementation("io.holunda.camunda-api:camunda-dmn-engine-api:7.18.0")
implementation("io.holunda.camunda-api:camunda-dmn-engine-api:7.20.0")
```


For Gradle Groovy DSL add to your `build.gradle`:

```groovy
implementation 'io.holunda.camunda-api:camunda-bpm-engine-api:7.18.0'
implementation 'io.holunda.camunda-api:camunda-bpm-engine-api:7.20.0'
```

and for DMN only:

```groovy
implementation 'io.holunda.camunda-api:camunda-bpm-engine-api:7.18.0'
implementation 'io.holunda.camunda-api:camunda-bpm-engine-api:7.20.0'
```

Please note that the version of this library is tightly-coupled to the version of original Camunda API.
Expand All @@ -84,6 +85,8 @@ Please note that the version of this library is tightly-coupled to the version o
| 7.16 | 7.16.0 |
| 7.17 | 7.17.0 |
| 7.18 | 7.18.0 |
| 7.19 | 7.19.0 |
| 7.20 | 7.20.0 |



Expand Down
2 changes: 1 addition & 1 deletion dmn-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.holunda.camunda-api</groupId>
<artifactId>camunda-api-parent</artifactId>
<version>7.20.0</version>
<version>7.21.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.holunda.camunda-api</groupId>
<artifactId>camunda-api-parent</artifactId>
<version>7.20.0</version>
<version>7.21.0</version>
<name>${project.artifactId}</name>
<description>Camunda BPM Engine API</description>
<url>https://github.com/holunda-io/camunda-bpm-api/</url>
Expand All @@ -18,7 +18,7 @@
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>

<camunda-engine.version>7.20.0</camunda-engine.version>
<camunda-engine.version>7.21.0</camunda-engine.version>
</properties>

<modules>
Expand Down Expand Up @@ -66,14 +66,14 @@
<!-- cleaning -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.3.1</version>
<version>3.3.2</version>
</plugin>

<plugin>
<!-- Java compiler -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.13.0</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<source>${maven.compiler.source}</source>
Expand All @@ -84,7 +84,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.6.0</version>
<version>3.6.1</version>
<executions>
<!--
<execution>
Expand Down Expand Up @@ -118,7 +118,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.4.0</version>
<version>3.5.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
Expand All @@ -143,7 +143,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.0</version>
<version>3.6.3</version>
<configuration>
<failOnWarnings>false</failOnWarnings>
<failOnError>false</failOnError>
Expand All @@ -163,7 +163,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -179,7 +179,7 @@
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.20.0</version>
<version>1.21.0</version>
<configuration>
<gitFlowConfig>
<productionBranch>master</productionBranch>
Expand All @@ -201,7 +201,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.3</version>
<configuration>
<gpgArguments>
<arg>--batch</arg>
Expand Down
2 changes: 1 addition & 1 deletion process-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.holunda.camunda-api</groupId>
<artifactId>camunda-api-parent</artifactId>
<version>7.20.0</version>
<version>7.21.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 106e40c

Please sign in to comment.