Skip to content

Commit 9cd54a6

Browse files
committed
Add JAXB API and runtime dependencies for JDK 17
1 parent e5d6cd5 commit 9cd54a6

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,33 @@
5555
<gitflow.version>3.4</gitflow.version>
5656
</properties>
5757

58+
<dependencyManagement>
59+
<dependencies>
60+
<dependency>
61+
<groupId>javax.xml.bind</groupId>
62+
<artifactId>jaxb-api</artifactId>
63+
<version>${jaxb.version}</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>org.glassfish.jaxb</groupId>
67+
<artifactId>jaxb-runtime</artifactId>
68+
<version>${jaxb.version}</version>
69+
</dependency>
70+
</dependencies>
71+
</dependencyManagement>
72+
73+
<dependencies>
74+
<dependency>
75+
<groupId>javax.xml.bind</groupId>
76+
<artifactId>jaxb-api</artifactId>
77+
</dependency>
78+
<dependency>
79+
<groupId>org.glassfish.jaxb</groupId>
80+
<artifactId>jaxb-runtime</artifactId>
81+
<scope>runtime</scope>
82+
</dependency>
83+
</dependencies>
84+
5885
<distributionManagement>
5986
<repository>
6087
<id>releases</id>

0 commit comments

Comments
 (0)