diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2018-01-24 10:42:29 +0100 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2018-01-24 10:42:29 +0100 |
commit | ed35a5e8e6edb213be2f56fe9d0c156bd175cdaf (patch) | |
tree | 6cf31139c4af8d03d6c30916c2a7079179d8c4c3 /utils | |
parent | 184df368ad28c1bf77fc40627ff46224937c0646 (diff) | |
download | mocca-ed35a5e8e6edb213be2f56fe9d0c156bd175cdaf.tar.gz mocca-ed35a5e8e6edb213be2f56fe9d0c156bd175cdaf.tar.bz2 mocca-ed35a5e8e6edb213be2f56fe9d0c156bd175cdaf.zip |
updates to use java compiler from Java 9 package
Diffstat (limited to 'utils')
-rw-r--r-- | utils/pom.xml | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/utils/pom.xml b/utils/pom.xml index e40d8a63..5afbe058 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -30,9 +30,12 @@ <dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
- <version>2.3.0-b170127.1453</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jaxb-api</artifactId>
</dependency>
- <dependency>
+ <dependency>
<artifactId>sjsxp</artifactId>
<groupId>com.sun.xml.stream</groupId>
<version>1.0.2</version>
@@ -44,5 +47,27 @@ <version>2.5</version>
</dependency>
+ <!-- for testing -->
+ <dependency>
+ <groupId>com.sun.xml.bind</groupId>
+ <artifactId>jaxb-impl</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.xml.bind</groupId>
+ <artifactId>jaxb-core</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jaxb-api</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.activation</groupId>
+ <artifactId>activation</artifactId>
+ <scope>test</scope>
+ </dependency>
+
</dependencies>
</project>
|