ソースを参照

Preparing for JDK>=9 compatibility

pull/46/head
Martin Stockhammer 6年前
コミット
27f5fd524c

+ 13
- 0
archiva-modules/archiva-base/archiva-checksum/pom.xml ファイルの表示

@@ -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 ファイルの表示

@@ -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 ファイルの表示

@@ -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 ファイルの表示

@@ -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 ファイルの表示

@@ -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 ファイルの表示

@@ -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 ファイルの表示

@@ -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 ファイルの表示

@@ -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 ファイルの表示

@@ -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 ファイルの表示

@@ -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 ファイルの表示

@@ -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 ファイルの表示

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


読み込み中…
キャンセル
保存