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 /bkucommon | |
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 'bkucommon')
-rw-r--r-- | bkucommon/pom.xml | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/bkucommon/pom.xml b/bkucommon/pom.xml index be5679a7..b0bda903 100644 --- a/bkucommon/pom.xml +++ b/bkucommon/pom.xml @@ -114,16 +114,21 @@ <optional>true</optional>
</dependency>
<dependency>
- <groupId>org.glassfish.metro</groupId>
- <artifactId>webservices-rt</artifactId>
-
- <scope>test</scope>
- </dependency>
+ <groupId>org.glassfish.metro</groupId>
+ <artifactId>webservices-rt</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.activation</groupId>
+ <artifactId>activation</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+
<!-- dependency to ensure NamespacePrefixmapper -->
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
- <version>2.2.11</version>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
|