Skip to content

Commit

Permalink
Merge pull request #1710 from camunda/7.22-backport-1699
Browse files Browse the repository at this point in the history
[Backport 7.22] chore(update): add note about public repo config
  • Loading branch information
PHWaechtler authored Nov 21, 2024
2 parents 67a57f4 + 33dee76 commit c981aaf
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
11 changes: 9 additions & 2 deletions content/update/ce-to-ee.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,21 @@ To officially begin migrating from Camunda 7 Community Edition to the Enterprise
<version>7.15.0-ee</version>
</dependency>
```
5. We need to tell it where to find these new dependencies. Therefore, we’ll add the location of the repository at the end of the dependencies in the `pom.xml` file as follows:
5. We need to tell it where to find these new dependencies. Therefore, we’ll add the locations of the repositories at the end of the dependencies in the `pom.xml` file as follows:
```xml
<repositories>
<repository>
<id>camunda-bpm-nexus</id>
<name>camunda-bpm-nexus</name>
<url>
https://artifacts.camunda.com/artifactory/public/
</url>
</repository>
<repository>
<id>Camunda-bpm-nexus-ee</id>
<name>camunda-bpm-nexus</name>
<url>
https://camunda.jfrog.io/artifactory/private/
https://artifacts.camunda.com/artifactory/private/
</url>
</repository>
</repositories>
Expand Down
24 changes: 24 additions & 0 deletions content/update/minor/721-to-722/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ This document guides you through the update from Camunda `7.21.x` to `7.22.0` an
1. For developers: [Camunda Template Engines FreeMarker](#camunda-template-engines-freemarker)
1. For developers: [Camunda Connect](#camunda-connect)
1. For developers: [Camunda Connect dependency removed from `camunda-engine`](#camunda-connect-dependency-removed-from-camunda-engine)
1. For administrators and developers: [Camunda license check dependency moved to public repository](#camunda-license-check-dependency-moved-to-public-repository)
1. For administrators and developers: [Update to JBoss EAP 8.0](#update-to-jboss-eap-8)
1. For administrators and developers: [Update to Tomcat 10 Server](#update-to-tomcat-10-server)
1. For administrators and developers: [Camunda Run and Swagger Update](#camunda-run-and-swagger-update)
Expand Down Expand Up @@ -74,6 +75,29 @@ Before starting, ensure you have downloaded the Camunda 7.22 distribution for th
* `camunda-connect-http-client`
* `camunda-connect-soap-http-client`

# Camunda license check dependency moved to public repository

For enterprise users, the `camunda-license-check` is no longer in the private repository. Instead, it can now be found in the public repository which you need to add to your configured repositories. Note if you are using the community edition, this does not affect you. For enterprise users, the complete repository configuration should now look like this:

```xml
<repositories>
<repository>
<id>camunda-bpm-nexus</id>
<name>camunda-bpm-nexus</name>
<url>
https://artifacts.camunda.com/artifactory/public/
</url>
</repository>
<repository>
<id>Camunda-bpm-nexus-ee</id>
<name>camunda-bpm-nexus</name>
<url>
https://artifacts.camunda.com/artifactory/private/
</url>
</repository>
</repositories>
```

# Update to JBoss EAP 8

With this release, we support JBoss EAP 8.0, it's Jakarta EE compliant platform. The artifacts are shipped with the latest pre-packaged [Camunda 7 WildFly distribution]({{< ref "/installation/full/jboss/manual.md#setup" >}}).
Expand Down

0 comments on commit c981aaf

Please sign in to comment.