diff options
author | Olivier Lamy <olamy@apache.org> | 2022-04-10 15:55:39 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-10 15:55:39 +1000 |
commit | 35f52243d8ee8d1f506323547624fad38fff8034 (patch) | |
tree | b6a1896075b28d9b65ace13a83d773391181a8ec /archiva-modules/metadata | |
parent | f62b75fabbac20aa44383900407eb69384cc58fb (diff) | |
download | archiva-35f52243d8ee8d1f506323547624fad38fff8034.tar.gz archiva-35f52243d8ee8d1f506323547624fad38fff8034.zip |
dependabot and simple gh action (#63)
Signed-off-by: Olivier Lamy <olamy@apache.org>
Diffstat (limited to 'archiva-modules/metadata')
-rw-r--r-- | archiva-modules/metadata/metadata-model/pom.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/archiva-modules/metadata/metadata-model/pom.xml b/archiva-modules/metadata/metadata-model/pom.xml index a38a8736f..420d1bcf4 100644 --- a/archiva-modules/metadata/metadata-model/pom.xml +++ b/archiva-modules/metadata/metadata-model/pom.xml @@ -55,4 +55,22 @@ </plugin> </plugins> </build> + + <profiles> + <profile> + <id>jdk9+</id> + <activation> + <jdk>[1.9,)</jdk> + </activation> + <dependencies> + <!-- needed for jdk 11 --> + <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + <version>2.3.1</version> + </dependency> + </dependencies> + </profile> + </profiles> + </project> |