Quellcode durchsuchen

Preparing for JDK>=9 compatibility

pull/46/head
Martin Stockhammer vor 6 Jahren
Ursprung
Commit
27f5fd524c

+ 13
- 0
archiva-modules/archiva-base/archiva-checksum/pom.xml Datei anzeigen

@@ -51,6 +51,19 @@
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</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>

+ 13
- 0
archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/pom.xml Datei anzeigen

@@ -164,6 +164,19 @@
<artifactId>archiva-maven2-indexer</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>
<pluginManagement>

+ 13
- 0
archiva-modules/archiva-base/archiva-converter/pom.xml Datei anzeigen

@@ -100,6 +100,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>

+ 13
- 0
archiva-modules/archiva-base/archiva-policies/pom.xml Datei anzeigen

@@ -92,6 +92,19 @@
<artifactId>spring-test</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>

+ 13
- 0
archiva-modules/archiva-base/archiva-proxy/pom.xml Datei anzeigen

@@ -220,6 +220,19 @@
<artifactId>archiva-maven2-indexer</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>

+ 13
- 0
archiva-modules/archiva-base/archiva-transaction/pom.xml Datei anzeigen

@@ -66,6 +66,19 @@
<artifactId>log4j-jcl</artifactId>
<scope>compile</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>

+ 19
- 0
archiva-modules/archiva-web/archiva-rest/archiva-rest-services/pom.xml Datei anzeigen

@@ -408,6 +408,25 @@
<scope>provided</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>

<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

<build>

+ 18
- 0
archiva-modules/archiva-web/archiva-web-common/pom.xml Datei anzeigen

@@ -385,6 +385,24 @@
<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>

<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>

+ 13
- 0
archiva-modules/archiva-web/archiva-webdav/pom.xml Datei anzeigen

@@ -258,6 +258,19 @@
<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>

+ 12
- 0
archiva-modules/plugins/maven2-repository/pom.xml Datei anzeigen

@@ -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>

+ 13
- 0
archiva-modules/plugins/problem-reports/pom.xml Datei anzeigen

@@ -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>

+ 19
- 0
pom.xml Datei anzeigen

@@ -1528,6 +1528,25 @@
<version>1.7.2</version>
</dependency>

<!-- Dependencies for JDK >=9 update -->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>

<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>

<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.0</version>
</dependency>

</dependencies>
</dependencyManagement>


Laden…
Abbrechen
Speichern