Commit b3aa90b9 authored by Matthias Betz's avatar Matthias Betz
Browse files

fixing missing dependencies for jaxb with java version >= 11

parent 1b81bbe0
Pipeline #1887 passed with stage
in 2 minutes and 21 seconds
......@@ -17,10 +17,17 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-core -->
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
......@@ -63,7 +63,7 @@
<dependency>
<groupId>org.citygml4j</groupId>
<artifactId>citygml4j</artifactId>
<version>2.10.2</version>
<version>2.11.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.citygml4j.ade/energy-ade-citygml4j -->
<dependency>
......@@ -151,6 +151,16 @@
<artifactId>jaxb-core</artifactId>
<version>2.3.0.1</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment