-
Bug Report
-
Resolution: Duplicate
-
L3 - Default
-
None
-
7.13.0
-
None
Hello guys.
I am using the Camunda Engine embedded in a SpringBoot project. When upgrading to version 7.13.0, an error occurred while running the Maven duplicate-finder-maven-plugin.
Found duplicate classes/resources in runtime classpath. Found duplicate and different resources in [org.camunda.bpm.model:camunda-bpmn-model:7.13.0, org.camunda.bpm.model:camunda-dmn-model:7.13.0]: DC.xsd DI.xsd
The workaround was to add the following configuration to my pom.xml:
<plugin> <groupId>org.basepom.maven</groupId> <artifactId>duplicate-finder-maven-plugin</artifactId> <configuration> <exceptions> <exception> <conflictingDependencies> <dependency> <groupId>org.camunda.bpm.model</groupId> <artifactId>camunda-bpmn-model</artifactId> </dependency> <dependency> <groupId>org.camunda.bpm.model</groupId> <artifactId>camunda-dmn-model</artifactId> </dependency> </conflictingDependencies> <resources> <resource>DC.xsd</resource> <resource>DI.xsd</resource> </resources> </exception> </exceptions> </configuration> </plugin>
This is the controller panel for Smart Panels app
- duplicates
-
CAM-11943 Ensure unique classpath resource names for Model API schema files
- Closed