I started my Spring Boot project based on https://start.camunda.com/ and now I wanted to add the license key for the enterprise version in the admin section like its described in the docs: System Management | docs.camunda.org but I don’t have “license key” as an option in the sidebar. So how can I add the enterprise version?
You need to update some things to get the EE artifacts.
You can follow this tutorial created by @davidgs Tutorial: How to Migrate a Camunda Platform Community Edition Project to Enterprise - YouTube
Thank you for the fast reply. I tried to do it like in the video but as soon as I add EE artifacts I can’t run mvn clean anymore. I get the following error:
D:\Personal\quotation>mvn clean
[INFO] Scanning for projects…
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[FATAL] Non-parseable POM C:\Users\micha.m2\repository\org\camunda\bpm\camunda-bom\7.16.0-ee\camunda-bom-7.16.0-ee.pom: unexpected markup <!d (position: START_DOCUMENT seen <!d… @1:3) @ C:\Users\micha.m2\repository\org\camunda\bpm\camunda-bom
7.16.0-ee\camunda-bom-7.16.0-ee.pom, line 1, column 3
[ERROR] ‘dependencies.dependency.version’ for org.camunda.bpm:camunda-engine-plugin-spin:jar is missing. @ line 50, column 17
[ERROR] ‘dependencies.dependency.version’ for org.camunda.spin:camunda-spin-dataformat-all:jar is missing. @ line 55, column 17
[ERROR] ‘dependencies.dependency.version’ for org.camunda.connect:camunda-connect-connectors-all:jar is missing. @ line 76, column 17
[ERROR] ‘dependencies.dependency.version’ for org.camunda.connect:camunda-connect-core:jar is missing. @ line 81, column 17
[ERROR] ‘dependencies.dependency.version’ for org.camunda.connect:camunda-connect-http-client:jar is missing. @ line 86, column 17
[ERROR] ‘dependencies.dependency.version’ for org.camunda.connect:camunda-connect-soap-http-client:jar is missing. @ line 91, column 17
[ERROR] ‘dependencies.dependency.version’ for org.camunda.bpm:camunda-engine-plugin-connect:jar is missing. @ line 96, column 17
@
[ERROR] The build could not read 1 project → [Help 1]
[ERROR]
[ERROR] The project com.example.workflow:quotation:1.0.0-SNAPSHOT (D:\Personal\quotation\pom.xml) has 8 errors
[ERROR] Non-parseable POM C:\Users\micha.m2\repository\org\camunda\bpm\camunda-bom\7.16.0-ee\camunda-bom-7.16.0-ee.pom: unexpected markup <!d (position: START_DOCUMENT seen <!d… @1:3) @ C:\Users\micha.m2\repository\org\camunda\bpm\camunda-
bom\7.16.0-ee\camunda-bom-7.16.0-ee.pom, line 1, column 3 → [Help 2]
[ERROR] ‘dependencies.dependency.version’ for org.camunda.bpm:camunda-engine-plugin-spin:jar is missing. @ line 50, column 17
[ERROR] ‘dependencies.dependency.version’ for org.camunda.spin:camunda-spin-dataformat-all:jar is missing. @ line 55, column 17
[ERROR] ‘dependencies.dependency.version’ for org.camunda.connect:camunda-connect-connectors-all:jar is missing. @ line 76, column 17
[ERROR] ‘dependencies.dependency.version’ for org.camunda.connect:camunda-connect-core:jar is missing. @ line 81, column 17
[ERROR] ‘dependencies.dependency.version’ for org.camunda.connect:camunda-connect-http-client:jar is missing. @ line 86, column 17
[ERROR] ‘dependencies.dependency.version’ for org.camunda.connect:camunda-connect-soap-http-client:jar is missing. @ line 91, column 17
[ERROR] ‘dependencies.dependency.version’ for org.camunda.bpm:camunda-engine-plugin-connect:jar is missing. @ line 96, column 17
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/ModelParseException
Can you post your pom.xml
file so we can see if something is missing in there?
Also, did you set up your login information to the ee repository in your ~/.m2/settings.xml
file?
dg