Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md: maven coordinates of current release and compatibil… #518

Merged
merged 1 commit into from
Apr 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ If you create a new project then simply use the feature `features=camunda-platfo

Add the dependency to the build.gradle file:
```groovy
implementation("info.novatec:micronaut-camunda-bpm-feature:2.16.0")
implementation("info.novatec:micronaut-camunda-bpm-feature:2.17.0")
runtimeOnly("com.h2database:h2")
```
</details>
Expand All @@ -293,7 +293,7 @@ Add the dependency to the pom.xml file:
<dependency>
<groupId>info.novatec</groupId>
<artifactId>micronaut-camunda-bpm-feature</artifactId>
<version>2.16.0</version>
<version>2.17.0</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
Expand Down Expand Up @@ -459,13 +459,13 @@ on how to do that. Keep in mind using the correct version of the libraries.

In `build.gradle`:
```groovy
implementation("info.novatec:micronaut-camunda-bpm-feature:2.16.0") {
implementation("info.novatec:micronaut-camunda-bpm-feature:2.17.0") {
exclude group: 'org.camunda.bpm.webapp', module: 'camunda-webapp-webjar'
exclude group: 'org.camunda.bpm', module: 'camunda-engine'
}

implementation("org.camunda.bpm.webapp:camunda-webapp-webjar-ee:7.20.0-ee")
implementation("org.camunda.bpm:camunda-engine:7.20.0-ee")
implementation("org.camunda.bpm.webapp:camunda-webapp-webjar-ee:7.21.0-ee")
implementation("org.camunda.bpm:camunda-engine:7.21.0-ee")
```
</details>
<details>
Expand All @@ -476,7 +476,7 @@ In `pom.xml`:
<dependency>
<groupId>info.novatec</groupId>
<artifactId>micronaut-camunda-bpm-feature</artifactId>
<version>2.16.0</version>
<version>2.17.0</version>
<exclusions>
<exclusion>
<groupId>org.camunda.bpm.webapp</groupId>
Expand All @@ -491,12 +491,12 @@ In `pom.xml`:
<dependency>
<groupId>org.camunda.bpm.webapp</groupId>
<artifactId>camunda-webapp-webjar-ee</artifactId>
<version>7.20.0-ee</version>
<version>7.21.0-ee</version>
</dependency>
<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-engine</artifactId>
<version>7.20.0-ee</version>
<version>7.21.0-ee</version>
</dependency>
```
</details>
Expand All @@ -523,7 +523,7 @@ You can either
Example with the LDAP plugin:

```groovy
implementation("org.camunda.bpm.identity:camunda-identity-ldap:7.20.0")
implementation("org.camunda.bpm.identity:camunda-identity-ldap:7.21.0")
```

```java
Expand Down Expand Up @@ -806,7 +806,7 @@ Process tests can easily be implemented with JUnit 5 by adding the `camunda-bpm-
<summary>Click to show Gradle dependencies</summary>

```groovy
testImplementation("org.camunda.bpm:camunda-bpm-assert:7.20.0")
testImplementation("org.camunda.bpm:camunda-bpm-assert:7.21.0")
testImplementation("org.assertj:assertj-core")
```
</details>
Expand All @@ -818,7 +818,7 @@ testImplementation("org.assertj:assertj-core")
<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-bpm-assert</artifactId>
<version>7.20.0</version>
<version>7.21.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -985,13 +985,14 @@ Other combinations might also work but have not been tested.

| Release | Micronaut | Camunda |
|---------|-----------|---------|
| 2.16.0 | 3.9.4 | 7.20.0 |
| 2.17.0 | 3.9.4 | 7.21.0 |

<details>
<summary>Click to see older releases</summary>

| Release | Micronaut | Camunda |
|--------|-----------|--------|
| 2.16.0 | 3.9.4 | 7.20.0 |
| 2.15.0 | 3.9.4 | 7.19.0 |
| 2.14.0 | 3.9.0 | 7.19.0 |
| 2.13.0 | 3.8.9 | 7.19.0 |
Expand Down