Trying to get Camunda Enterprise running
When I run mvn install I get:
[ ERROR ] Failed to execute goal on project camunda: Could not resolve dependencies for project com.example.workflow:spike-camunda:jar:1.0.0-SNAPSHOT: The following artifacts could not be resolved: org.camunda.bpm:camunda-bom:jar:7.14.0-ee, org.camunda.spin:camunda-spin-bom:jar:1.10.0: Could not find artifact org.camunda.bpm:camunda-bom:jar:7.14.0-ee in camunda-bpm-nexus-ee () → [Help 1]
I’m following Apache Maven Coordinates | docs.camunda.org.
My ~/.m2/settings.xml file:
camunda-bpm-nexus-eeMy pom.xml:
<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-bom</artifactId>
<version>7.14.0-ee</version>
</dependency>
. . .
camunda-bpm-nexus-ee camunda-bpm-nexus https://app.camunda.com/nexus/content/repositories/camunda-bpm-ee . . .If I navigate to https://app.camunda.com/nexus/content/repositories/camunda-bpm-ee/org/camunda/bpm/camunda-bom/7.14.0-ee/camunda-bom-7.14.0-ee.jar, I get a 404. Same thing goes for all versions from 7.14.1 → 7.14.4
What am I missing?