2008-04-14 02:43:41 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2009-10-07 10:12:41 +00:00
|
|
|
~ Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
~ or more contributor license agreements. See the NOTICE file
|
|
|
|
~ distributed with this work for additional information
|
|
|
|
~ regarding copyright ownership. The ASF licenses this file
|
|
|
|
~ to you under the Apache License, Version 2.0 (the
|
|
|
|
~ "License"); you may not use this file except in compliance
|
|
|
|
~ with the License. You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing,
|
|
|
|
~ software distributed under the License is distributed on an
|
|
|
|
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
~ KIND, either express or implied. See the License for the
|
|
|
|
~ specific language governing permissions and limitations
|
|
|
|
~ under the License.
|
2008-04-14 02:43:41 +00:00
|
|
|
-->
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2008-04-15 04:44:17 +00:00
|
|
|
<artifactId>archiva-base</artifactId>
|
2017-05-18 15:04:58 +10:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2008-04-14 02:43:41 +00:00
|
|
|
</parent>
|
|
|
|
<artifactId>archiva-checksum</artifactId>
|
2011-09-01 17:09:08 +00:00
|
|
|
<name>Archiva Base :: Checksum</name>
|
2008-04-14 02:43:41 +00:00
|
|
|
|
2018-11-04 13:34:47 +01:00
|
|
|
<properties>
|
|
|
|
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
|
|
|
</properties>
|
|
|
|
|
2008-04-14 02:43:41 +00:00
|
|
|
<dependencies>
|
2011-06-15 11:03:10 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-common</artifactId>
|
|
|
|
</dependency>
|
2008-04-14 02:43:41 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2009-03-14 02:33:57 +00:00
|
|
|
<dependency>
|
2012-07-02 07:36:23 +00:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2012-07-02 07:40:05 +00:00
|
|
|
<artifactId>archiva-test-utils</artifactId>
|
2012-07-02 07:36:23 +00:00
|
|
|
<version>${project.version}</version>
|
2009-03-14 02:33:57 +00:00
|
|
|
<scope>test</scope>
|
2012-07-02 07:36:23 +00:00
|
|
|
</dependency>
|
2008-04-14 02:43:41 +00:00
|
|
|
<dependency>
|
2019-09-02 16:51:46 +02:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2008-04-14 02:43:41 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-05-29 08:03:01 +00:00
|
|
|
<groupId>commons-io</groupId>
|
2008-04-14 02:43:41 +00:00
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
2018-05-19 19:07:44 +02:00
|
|
|
|
2008-04-14 02:43:41 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2011-08-25 08:42:50 +00:00
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>src/test/resources/examples/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
2019-09-01 14:37:52 +02:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>jdk9+</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[1.9,)</jdk>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 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>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2008-04-14 02:43:41 +00:00
|
|
|
</project>
|