Skip to content

Commit c981aaf

Browse files
authored
Merge pull request #1710 from camunda/7.22-backport-1699
[Backport 7.22] chore(update): add note about public repo config
2 parents 67a57f4 + 33dee76 commit c981aaf

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

content/update/ce-to-ee.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,21 @@ To officially begin migrating from Camunda 7 Community Edition to the Enterprise
7272
<version>7.15.0-ee</version>
7373
</dependency>
7474
```
75-
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:
75+
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:
7676
```xml
7777
<repositories>
78+
<repository>
79+
<id>camunda-bpm-nexus</id>
80+
<name>camunda-bpm-nexus</name>
81+
<url>
82+
https://artifacts.camunda.com/artifactory/public/
83+
</url>
84+
</repository>
7885
<repository>
7986
<id>Camunda-bpm-nexus-ee</id>
8087
<name>camunda-bpm-nexus</name>
8188
<url>
82-
https://camunda.jfrog.io/artifactory/private/
89+
https://artifacts.camunda.com/artifactory/private/
8390
</url>
8491
</repository>
8592
</repositories>

content/update/minor/721-to-722/_index.md

+24
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ This document guides you through the update from Camunda `7.21.x` to `7.22.0` an
2222
1. For developers: [Camunda Template Engines FreeMarker](#camunda-template-engines-freemarker)
2323
1. For developers: [Camunda Connect](#camunda-connect)
2424
1. For developers: [Camunda Connect dependency removed from `camunda-engine`](#camunda-connect-dependency-removed-from-camunda-engine)
25+
1. For administrators and developers: [Camunda license check dependency moved to public repository](#camunda-license-check-dependency-moved-to-public-repository)
2526
1. For administrators and developers: [Update to JBoss EAP 8.0](#update-to-jboss-eap-8)
2627
1. For administrators and developers: [Update to Tomcat 10 Server](#update-to-tomcat-10-server)
2728
1. For administrators and developers: [Camunda Run and Swagger Update](#camunda-run-and-swagger-update)
@@ -74,6 +75,29 @@ Before starting, ensure you have downloaded the Camunda 7.22 distribution for th
7475
* `camunda-connect-http-client`
7576
* `camunda-connect-soap-http-client`
7677

78+
# Camunda license check dependency moved to public repository
79+
80+
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:
81+
82+
```xml
83+
<repositories>
84+
<repository>
85+
<id>camunda-bpm-nexus</id>
86+
<name>camunda-bpm-nexus</name>
87+
<url>
88+
https://artifacts.camunda.com/artifactory/public/
89+
</url>
90+
</repository>
91+
<repository>
92+
<id>Camunda-bpm-nexus-ee</id>
93+
<name>camunda-bpm-nexus</name>
94+
<url>
95+
https://artifacts.camunda.com/artifactory/private/
96+
</url>
97+
</repository>
98+
</repositories>
99+
```
100+
77101
# Update to JBoss EAP 8
78102

79103
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" >}}).

0 commit comments

Comments
 (0)