Hi everyone,
beginning with release 7.1.0-alpha1, a subset of camunda-bpm-platform artifacts will be available as release and snapshot versions through maven central.
The available artifacts are:
- camunda-engine
- camunda-engine-cdi
- camunda-engine-spring
- camunda-engine-rest (.war and -classes.jar)
- camunda-identity-ldap
- camunda-ejb-service
- camunda-ejb-client
- camunda-jobexecutor-ra
- camunda-jobexecutor-rar (rar)
The downside of providing those artifacts through maven central is, that we are not allowed to include our own nexus as a repository in the camunda-bpm-platform root pom anymore.
This hits us, because we use several application server distributions which are not available through maven central and we are not allowed to upload them using maven central's third party repository.
So, for contributors / developers, we still have to add the camunda-bpm Nexus for development.
Please add the following lines to your ${user.home}/.m2/settings.xml (or whatever settings.xml you are using):
<profiles>
<profile>
<id>camunda-bpm</id>
<repositories>
<repository>
<id>camunda-bpm-nexus</id>
<name>camunda-bpm-nexus</name>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>camunda-bpm</activeProfile>
</activeProfiles>
Best regards,
Christian