diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-10-08 09:49:32 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-10-17 14:49:54 +0200 |
commit | f07c44f13dd7b906eed29a79f84fc39b9c866891 (patch) | |
tree | c039e6aa3b9270539d42c8a194923e1c5ce696a3 /pom.xml | |
parent | 83321d24c812dc6a0eaa1d6240b665d15753d3d4 (diff) | |
download | sonarqube-f07c44f13dd7b906eed29a79f84fc39b9c866891.tar.gz sonarqube-f07c44f13dd7b906eed29a79f84fc39b9c866891.zip |
SONAR-9828 add jaxb-api to server
JAXB requires to depend on Java 9 module java.xml.bind. To keep
things simple, providing the library at runtime allows to use
default minimal Java 9 runtime.
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -798,6 +798,11 @@ <version>3.4.4</version> </dependency> <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + <version>2.3.0</version> + </dependency> + <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>1.1.1</version> |