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

[Backport 7.22] chore(update): add note about public repo config #1710

Merged
merged 2 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
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
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