diff options
author | Olivier Lamy <olamy@apache.org> | 2022-08-06 11:30:06 +1000 |
---|---|---|
committer | Olivier Lamy <olamy@apache.org> | 2022-08-06 11:30:06 +1000 |
commit | 4e15d4fd6f458ac29b4dc928b538e2d23e2885f1 (patch) | |
tree | dee4b6dbf72d6a04094baf1bf0a512cb6d6da643 /archiva-modules/archiva-base/archiva-consumers | |
parent | 215b7719fd91469e28b7e45a22c671de28e350cc (diff) | |
download | archiva-4e15d4fd6f458ac29b4dc928b538e2d23e2885f1.tar.gz archiva-4e15d4fd6f458ac29b4dc928b538e2d23e2885f1.zip |
[MRM-2031] Switch to jdk 11
Signed-off-by: Olivier Lamy <olamy@apache.org>
Diffstat (limited to 'archiva-modules/archiva-base/archiva-consumers')
-rw-r--r-- | archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/pom.xml | 23 |
1 files changed, 4 insertions, 19 deletions
diff --git a/archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/pom.xml b/archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/pom.xml index 310ff577f..2c734618a 100644 --- a/archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/pom.xml +++ b/archiva-modules/archiva-base/archiva-consumers/archiva-core-consumers/pom.xml @@ -113,6 +113,10 @@ <artifactId>commons-io</artifactId> </dependency> + <dependency> + <groupId>jakarta.xml.bind</groupId> + <artifactId>jakarta.xml.bind-api</artifactId> + </dependency> <!-- test dependencies --> <dependency> @@ -329,23 +333,4 @@ </plugins> </build> - <!-- -The jaxb dependency is needed by the enunciate plugin starting with JDK9. -Adding to the plugin dependency is not sufficient, so I have to add it as project dependency. -Using provided scope to avoid adding it to packaging. ---> - <profiles> - <profile> - <id>jdk9+</id> - <activation> - <jdk>[1.9,)</jdk> - </activation> - <dependencies> - <dependency> - <groupId>jakarta.xml.bind</groupId> - <artifactId>jakarta.xml.bind-api</artifactId> - </dependency> - </dependencies> - </profile> - </profiles> </project> |