2006-10-26 05:15:23 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2006-09-15 07:03:30 -04:00
|
|
|
<!--
|
2006-12-23 01:39:46 -05: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
|
2006-09-15 07:03:30 -04:00
|
|
|
~
|
2006-12-23 01:39:46 -05:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2006-09-15 07:03:30 -04:00
|
|
|
~
|
2006-12-23 01:39:46 -05:00
|
|
|
~ 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.
|
2006-09-15 07:03:30 -04:00
|
|
|
-->
|
|
|
|
|
2007-06-01 13:10:13 -04: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">
|
2006-09-15 07:03:30 -04:00
|
|
|
<parent>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-03-22 18:03:11 -04:00
|
|
|
<artifactId>archiva-base</artifactId>
|
2017-05-18 01:04:58 -04:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2006-09-15 07:03:30 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>archiva-proxy</artifactId>
|
2011-11-22 09:17:04 -05:00
|
|
|
<packaging>bundle</packaging>
|
2007-03-22 18:03:11 -04:00
|
|
|
<name>Archiva Base :: Proxy</name>
|
2006-09-15 07:03:30 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-04-11 16:26:34 -04:00
|
|
|
<artifactId>archiva-configuration</artifactId>
|
|
|
|
</dependency>
|
2012-10-29 16:41:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-scheduler-api</artifactId>
|
|
|
|
</dependency>
|
2007-04-11 16:26:34 -04:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-04-11 16:26:34 -04:00
|
|
|
<artifactId>archiva-repository-layer</artifactId>
|
2012-09-09 11:37:27 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2006-09-15 07:03:30 -04:00
|
|
|
</dependency>
|
2013-12-12 23:46:36 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-filelock</artifactId>
|
|
|
|
</dependency>
|
2009-10-16 08:35:38 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-repository-scanner</artifactId>
|
|
|
|
</dependency>
|
2012-10-29 16:58:54 -04:00
|
|
|
<dependency>
|
2009-05-23 03:28:12 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2012-10-29 16:58:54 -04:00
|
|
|
<artifactId>archiva-scheduler-repository-api</artifactId>
|
|
|
|
</dependency>
|
2012-10-29 17:00:51 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>maven2-repository</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-proxy-api</artifactId>
|
|
|
|
</dependency>
|
2011-06-15 05:36:05 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-proxy-common</artifactId>
|
2012-09-09 11:37:27 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2011-06-15 05:36:05 -04:00
|
|
|
</dependency>
|
2007-04-15 20:49:27 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
2011-06-11 13:55:52 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
</dependency>
|
2011-05-27 13:26:26 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
</dependency>
|
2014-07-29 22:04:40 -04:00
|
|
|
<dependency>
|
2018-04-01 11:21:48 -04:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
2014-07-29 22:04:40 -04:00
|
|
|
</dependency>
|
2012-04-03 15:49:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
</dependency>
|
2011-05-27 13:26:26 -04:00
|
|
|
<dependency>
|
2013-04-25 09:19:19 -04:00
|
|
|
<groupId>org.eclipse.sisu</groupId>
|
|
|
|
<artifactId>org.eclipse.sisu.plexus</artifactId>
|
2011-05-27 13:26:26 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-08-10 08:56:05 -04:00
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
<artifactId>guice</artifactId>
|
2013-09-02 03:47:03 -04:00
|
|
|
<classifier>no_aop</classifier>
|
2011-05-27 13:26:26 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-plexus-bridge</artifactId>
|
|
|
|
</dependency>
|
2006-09-15 07:03:30 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-file</artifactId>
|
2008-06-05 03:34:53 -04:00
|
|
|
<scope>test</scope>
|
2006-09-15 07:03:30 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-provider-api</artifactId>
|
|
|
|
</dependency>
|
2006-10-30 14:32:43 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-digest</artifactId>
|
2011-05-26 16:52:13 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-component-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-04-19 08:25:11 -04:00
|
|
|
</dependency>
|
2007-04-25 15:58:48 -04:00
|
|
|
<dependency>
|
2012-04-12 05:07:11 -04:00
|
|
|
<groupId>org.apache.archiva.redback.components.registry</groupId>
|
2011-05-19 18:20:55 -04:00
|
|
|
<artifactId>spring-registry-commons</artifactId>
|
2007-04-25 15:58:48 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2007-08-29 21:22:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>xmlunit</groupId>
|
|
|
|
<artifactId>xmlunit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2008-07-27 11:23:30 -04:00
|
|
|
<dependency>
|
2012-10-02 11:11:33 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
2008-07-27 11:23:30 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
2011-08-23 09:55:11 -04:00
|
|
|
<artifactId>wagon-http</artifactId>
|
2008-07-27 11:23:30 -04:00
|
|
|
<scope>test</scope>
|
2011-08-23 09:55:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2008-07-27 11:23:30 -04:00
|
|
|
</dependency>
|
2012-02-04 17:17:53 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-http-lightweight</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2009-03-13 22:33:57 -04:00
|
|
|
<dependency>
|
2012-07-02 03:36:23 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2012-07-02 03:40:05 -04:00
|
|
|
<artifactId>archiva-test-utils</artifactId>
|
2012-07-02 03:36:23 -04:00
|
|
|
<version>${project.version}</version>
|
2009-03-13 22:33:57 -04:00
|
|
|
<scope>test</scope>
|
2012-07-02 03:36:23 -04:00
|
|
|
</dependency>
|
2011-09-13 08:12:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-repository-admin-default</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-10-01 02:02:49 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-mock</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-09-13 08:12:39 -04:00
|
|
|
<dependency>
|
2012-04-06 13:57:23 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2011-09-13 08:12:39 -04:00
|
|
|
<artifactId>redback-rbac-cached</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-security-common</artifactId>
|
|
|
|
</dependency>
|
2011-11-03 19:46:59 -04:00
|
|
|
<dependency>
|
2012-04-06 13:57:23 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2011-11-03 19:46:59 -04:00
|
|
|
<artifactId>redback-common-test-resources</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-01-06 00:30:55 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
<artifactId>xercesImpl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-10-01 02:13:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-12-30 09:35:19 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2018-03-24 12:41:50 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-maven2-indexer</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-05-19 13:07:44 -04:00
|
|
|
|
|
|
|
<!-- 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>
|
2006-09-15 07:03:30 -04:00
|
|
|
</dependencies>
|
2011-06-08 09:32:25 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2011-11-22 09:17:04 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Bundle-SymbolicName>org.apache.archiva.proxy</Bundle-SymbolicName>
|
|
|
|
<Bundle-Version>${project.version}</Bundle-Version>
|
|
|
|
<Export-Package>
|
|
|
|
org.apache.archiva.proxy;version=${project.version}
|
|
|
|
</Export-Package>
|
|
|
|
<Import-Package>
|
|
|
|
javax.annotation,
|
|
|
|
javax.inject,
|
|
|
|
com.google.common.collect,
|
|
|
|
org.apache.archiva.admin.model.beans;version=${project.version},
|
|
|
|
org.apache.archiva.configuration;version=${project.version},
|
|
|
|
org.apache.archiva.model;version=${project.version},
|
|
|
|
org.apache.archiva.policies*;version=${project.version},
|
|
|
|
org.apache.archiva.proxy.common;version=${project.version},
|
|
|
|
org.apache.archiva.repository*;version=${project.version},
|
|
|
|
org.apache.archiva.scheduler*;version=${project.version},
|
2012-02-04 17:17:53 -05:00
|
|
|
org.apache.archiva.admin.model;version=${project.version},
|
|
|
|
org.apache.archiva.admin.model.networkproxy;version=${project.version},
|
2012-10-29 17:07:01 -04:00
|
|
|
org.apache.archiva.proxy.model;version=${project.version},
|
2011-11-22 09:17:04 -05:00
|
|
|
org.apache.commons.collections;version="[3.2,4)",
|
|
|
|
org.apache.commons.io;version="[1.4,2)",
|
|
|
|
org.apache.commons.lang;version="[2.4,3)",
|
|
|
|
org.springframework.stereotype;version="[3,4)",
|
2012-04-12 12:34:08 -04:00
|
|
|
org.apache.archiva.redback.components.registry,
|
2012-04-13 18:10:42 -04:00
|
|
|
org.apache.archiva.redback.components.taskqueue,
|
2012-04-03 15:49:17 -04:00
|
|
|
org.apache.tools.ant.types.selectors,
|
2011-11-22 09:17:04 -05:00
|
|
|
org.apache.maven.wagon,
|
|
|
|
org.apache.maven.wagon.authentication,
|
|
|
|
org.apache.maven.wagon.proxy,
|
|
|
|
org.apache.maven.wagon.repository,
|
2012-04-02 11:01:28 -04:00
|
|
|
com.google.common.io,
|
2013-12-12 23:46:36 -05:00
|
|
|
org.apache.archiva.common.filelock,
|
2011-11-22 09:17:04 -05:00
|
|
|
org.slf4j;resolution:=optional
|
|
|
|
</Import-Package>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-06-08 09:32:25 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
2011-10-01 00:46:20 -04:00
|
|
|
<appserver.base>${project.build.directory}/appserver-base</appserver.base>
|
|
|
|
<plexus.home>${project.build.directory}/appserver-base</plexus.home>
|
|
|
|
<derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
|
2011-11-07 03:29:35 -05:00
|
|
|
<redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
|
|
|
|
<redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
|
2015-10-01 02:02:49 -04:00
|
|
|
<archiva.repositorySessionFactory.id>mock</archiva.repositorySessionFactory.id>
|
2016-05-22 20:38:19 -04:00
|
|
|
<http.proxyHost />
|
|
|
|
<http.proxyPort />
|
2017-05-21 11:39:07 -04:00
|
|
|
<openjpa.Log>${openjpa.Log}</openjpa.Log>
|
2011-06-08 09:32:25 -04:00
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2011-08-25 04:42:50 -04:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>src/test/repositories/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2011-06-08 09:32:25 -04:00
|
|
|
</build>
|
2006-09-15 07:03:30 -04:00
|
|
|
</project>
|