Skip to content

Commit

Permalink
Add javax.xml.bind for JClouds during runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
vkalapov committed Oct 28, 2024
1 parent f65bf49 commit a31d8d4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
1 change: 0 additions & 1 deletion multiapps-controller-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 1 addition & 3 deletions multiapps-controller-persistence/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,10 @@
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</dependency>
<!-- Dependency required by jclouds during unit testing.-->
<!-- Required by jclouds. For more info: https://issues.apache.org/jira/browse/JCLOUDS-1637-->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
3 changes: 1 addition & 2 deletions multiapps-controller-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,10 @@
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-jmx</artifactId>
</dependency>
<!-- Required by jclouds. For more info: https://issues.apache.org/jira/browse/JCLOUDS-1637-->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,13 @@
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jaxb-api.version}</version>
</dependency>
<!-- Required by swagger-maven-plugin during compile and jclouds during runtime, migrate once new jclouds version is released. For more info: https://issues.apache.org/jira/browse/JCLOUDS-1637 -->
<!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-core -->
<dependency>
<groupId>org.glassfish.jaxb</groupId>
Expand Down

0 comments on commit a31d8d4

Please sign in to comment.