Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CityDoctor
CityDoctor2
Commits
b3aa90b9
Commit
b3aa90b9
authored
Jan 22, 2021
by
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
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CityDoctorParent/CityDoctorCheckResult/pom.xml
View file @
b3aa90b9
...
...
@@ -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
CityDoctorParent/pom.xml
View file @
b3aa90b9
...
...
@@ -63,7 +63,7 @@
<dependency>
<groupId>
org.citygml4j
</groupId>
<artifactId>
citygml4j
</artifactId>
<version>
2.1
0
.2
</version>
<version>
2.1
1
.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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment