aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-modules/plugins
diff options
context:
space:
mode:
authorMartin Stockhammer <martin_s@apache.org>2018-05-19 19:07:44 +0200
committerMartin Stockhammer <martin_s@apache.org>2018-05-19 19:07:44 +0200
commit27f5fd524c931c655c10df11f3c75ed885b9ed62 (patch)
tree64cb8372f9bc74f34f42eaab2c74854863923c35 /archiva-modules/plugins
parent9add27af0bc1329a8cdb15b71cc47720e0443960 (diff)
downloadarchiva-27f5fd524c931c655c10df11f3c75ed885b9ed62.tar.gz
archiva-27f5fd524c931c655c10df11f3c75ed885b9ed62.zip
Preparing for JDK>=9 compatibility
Diffstat (limited to 'archiva-modules/plugins')
-rw-r--r--archiva-modules/plugins/maven2-repository/pom.xml12
-rw-r--r--archiva-modules/plugins/problem-reports/pom.xml13
2 files changed, 25 insertions, 0 deletions
diff --git a/archiva-modules/plugins/maven2-repository/pom.xml b/archiva-modules/plugins/maven2-repository/pom.xml
index 2acfa799b..d79a11494 100644
--- a/archiva-modules/plugins/maven2-repository/pom.xml
+++ b/archiva-modules/plugins/maven2-repository/pom.xml
@@ -193,6 +193,18 @@
<scope>test</scope>
</dependency>
+ <!-- Needed for JDK >= 9 -->
+ <dependency>
+ <groupId>javax.annotation</groupId>
+ <artifactId>javax.annotation-api</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jaxb-api</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
<plugins>
diff --git a/archiva-modules/plugins/problem-reports/pom.xml b/archiva-modules/plugins/problem-reports/pom.xml
index 3ffb4b39e..69c7f3c1c 100644
--- a/archiva-modules/plugins/problem-reports/pom.xml
+++ b/archiva-modules/plugins/problem-reports/pom.xml
@@ -74,6 +74,19 @@
<artifactId>xercesImpl</artifactId>
<scope>test</scope>
</dependency>
+
+ <!-- Needed for JDK >= 9 -->
+ <dependency>
+ <groupId>javax.annotation</groupId>
+ <artifactId>javax.annotation-api</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jaxb-api</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
<plugins>