Skip to content

Commit

Permalink
chore(spin): exclude dataformat all shaded dependencies (#4428)
Browse files Browse the repository at this point in the history
* chore(spin): exclude dataformat all shaded dependencies
* chore(externalClient): remove unused xml bind dependency

related to: #4427
  • Loading branch information
venetrius authored Jun 12, 2024
1 parent d511c38 commit 95b869d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
24 changes: 24 additions & 0 deletions bom/camunda-only-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,30 @@
<artifactId>camunda-spin-bom</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.camunda.spin</groupId>
<artifactId>camunda-spin-dataformat-all</artifactId>
<version>${project.version}</version>
<!-- Excluding dependencies that are shaded in camunda-spin-dataformat-all -->
<exclusions>
<exclusion>
<groupId>org.camunda.spin</groupId>
<artifactId>camunda-spin-dataformat-json-jackson</artifactId>
</exclusion>
<exclusion>
<groupId>org.camunda.spin</groupId>
<artifactId>camunda-spin-dataformat-xml-dom</artifactId>
</exclusion>
<exclusion>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.camunda.commons</groupId>
<artifactId>camunda-commons-bom</artifactId>
Expand Down
7 changes: 0 additions & 7 deletions clients/java/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,6 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${version.jakarta.xml.bind-api}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
Expand Down

0 comments on commit 95b869d

Please sign in to comment.