Skip to content

Commit 21e4eb5

Browse files
committed
Fix camel-debezium-oracle build failure by pinning jaxb-api version
Force javax.xml.bind:jaxb-api to 2.3.1 in dependencyManagement to avoid transitive resolution of beta 2.3.0-b161121.1438 from defunct http://maven.java.net repositories blocked by Maven 3.8.1+.
1 parent d4c2678 commit 21e4eb5

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,14 @@
754754
<artifactId>org.apache.felix.connect</artifactId>
755755
<version>${felix-connect-version}</version>
756756
</dependency>
757+
<!-- Force a release version of jaxb-api to avoid transitive pull of
758+
beta SNAPSHOTs from defunct http://maven.java.net repositories
759+
(blocked by Maven 3.8.1+ HTTP mirror blocker) -->
760+
<dependency>
761+
<groupId>javax.xml.bind</groupId>
762+
<artifactId>jaxb-api</artifactId>
763+
<version>2.3.1</version>
764+
</dependency>
757765
</dependencies>
758766
</dependencyManagement>
759767

0 commit comments

Comments
 (0)