2011-08-17 19:53:53 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
~ 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.
|
|
|
|
-->
|
|
|
|
<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">
|
2011-08-17 19:53:30 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2012-10-05 15:48:15 -04:00
|
|
|
<artifactId>archiva-rest</artifactId>
|
2012-10-03 10:23:47 -04:00
|
|
|
<version>1.4-M4-SNAPSHOT</version>
|
2011-08-17 19:53:30 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>archiva-rest-services</artifactId>
|
2011-11-24 18:04:57 -05:00
|
|
|
<packaging>bundle</packaging>
|
2011-08-17 19:53:30 -04:00
|
|
|
<name>Archiva Web :: REST support :: Services</name>
|
|
|
|
|
|
|
|
<properties>
|
2011-11-03 19:45:37 -04:00
|
|
|
<archiva.baseRestUrl />
|
2011-10-18 08:19:44 -04:00
|
|
|
<rest.admin.pwd />
|
2012-05-29 09:29:06 -04:00
|
|
|
<!--
|
2012-05-29 09:28:55 -04:00
|
|
|
<redbackTestJdbcUrl>jdbc:derby:memory:users-test;create=true</redbackTestJdbcUrl>
|
|
|
|
<redbackTestJdbcDriver>org.apache.derby.jdbc.EmbeddedDriver</redbackTestJdbcDriver>
|
2012-05-29 09:29:06 -04:00
|
|
|
-->
|
|
|
|
<redbackTestJdbcUrl>jdbc:hsqldb:mem:redback-test</redbackTestJdbcUrl>
|
|
|
|
<redbackTestJdbcDriver>org.hsqldb.jdbcDriver</redbackTestJdbcDriver>
|
2011-08-17 19:53:30 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2011-08-19 03:53:42 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-security</artifactId>
|
|
|
|
</dependency>
|
2011-08-23 08:20:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2011-09-13 08:12:39 -04:00
|
|
|
<artifactId>archiva-repository-admin-api</artifactId>
|
2011-08-23 08:20:00 -04:00
|
|
|
</dependency>
|
2012-02-24 16:18:34 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>metadata-model</artifactId>
|
|
|
|
</dependency>
|
2011-09-09 10:41:04 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-configuration</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2011-09-13 13:30:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-scheduler-indexing</artifactId>
|
2012-09-09 11:37:27 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2011-09-13 13:30:35 -04:00
|
|
|
</dependency>
|
2011-08-22 09:03:54 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>audit</artifactId>
|
|
|
|
</dependency>
|
2012-03-24 14:23:43 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>generic-metadata-support</artifactId>
|
|
|
|
</dependency>
|
2011-08-19 03:54:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-scheduler-repository</artifactId>
|
|
|
|
</dependency>
|
2011-09-13 08:12:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-indexer</artifactId>
|
|
|
|
</dependency>
|
2011-09-22 18:20:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-repository-layer</artifactId>
|
|
|
|
</dependency>
|
2012-03-09 18:44:11 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-repository-scanner</artifactId>
|
|
|
|
</dependency>
|
2012-08-04 02:56:52 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-maven2-model</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2012-10-05 09:42:38 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
<version>1.7.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2011-08-17 19:53:30 -04:00
|
|
|
<dependency>
|
2012-04-06 13:57:23 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2011-08-17 19:53:30 -04:00
|
|
|
<artifactId>redback-authorization-api</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-04-06 13:57:23 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2011-08-17 19:53:30 -04:00
|
|
|
<artifactId>redback-authentication-api</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-04-06 13:57:23 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2011-08-17 19:53:30 -04:00
|
|
|
<artifactId>redback-common-integrations</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
2011-10-03 11:12:20 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>stax</groupId>
|
|
|
|
<artifactId>stax-api</artifactId>
|
|
|
|
</exclusion>
|
2011-08-17 19:53:30 -04:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-rest-api</artifactId>
|
|
|
|
</dependency>
|
2012-09-13 18:11:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-proxy</artifactId>
|
|
|
|
</dependency>
|
2012-09-18 17:58:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>stage-repository-merge</artifactId>
|
|
|
|
</dependency>
|
2011-08-17 19:53:30 -04:00
|
|
|
<dependency>
|
2012-04-06 13:57:23 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2011-08-17 19:53:30 -04:00
|
|
|
<artifactId>redback-rest-services</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-04-06 13:57:23 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2011-08-17 19:53:30 -04:00
|
|
|
<artifactId>redback-rest-api</artifactId>
|
|
|
|
</dependency>
|
2011-08-19 13:14:32 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-validator</groupId>
|
|
|
|
<artifactId>commons-validator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>oro</groupId>
|
|
|
|
<artifactId>oro</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2011-08-17 19:53:30 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
<artifactId>jsr311-api</artifactId>
|
|
|
|
</dependency>
|
2011-08-19 13:14:32 -04:00
|
|
|
|
2011-09-07 17:48:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.beanlib</groupId>
|
|
|
|
<artifactId>beanlib</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
<artifactId>cglib</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>aopalliance</groupId>
|
|
|
|
<artifactId>aopalliance</artifactId>
|
|
|
|
</exclusion>
|
2012-09-09 11:37:27 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
2011-09-07 17:48:21 -04:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2012-02-25 17:11:29 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-jaxrs</artifactId>
|
|
|
|
</dependency>
|
2012-03-01 05:28:16 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-xc</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
|
|
</dependency>
|
2011-08-17 19:53:30 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
<artifactId>cxf-bundle-jaxrs</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
</exclusion>
|
2012-03-01 05:28:16 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.jettison</groupId>
|
|
|
|
<artifactId>jettison</artifactId>
|
|
|
|
</exclusion>
|
2012-06-15 17:09:19 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-servlet_2.5_spec</artifactId>
|
|
|
|
</exclusion>
|
2011-08-17 19:53:30 -04:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-04-06 13:57:23 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2011-08-17 19:53:30 -04:00
|
|
|
<artifactId>redback-rest-services</artifactId>
|
|
|
|
<classifier>tests</classifier>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2011-11-03 19:47:23 -04:00
|
|
|
<dependency>
|
2012-04-06 13:57:23 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2011-11-03 19:47:23 -04:00
|
|
|
<artifactId>redback-common-test-resources</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2011-12-13 16:53:26 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-expression</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2011-08-17 19:53:30 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-07-02 03:36:23 -04:00
|
|
|
<dependency>
|
|
|
|
<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>
|
|
|
|
<scope>test</scope>
|
2012-07-30 13:27:33 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2012-07-02 03:36:23 -04:00
|
|
|
</dependency>
|
2011-08-17 19:53:30 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2011-10-09 10:12:24 -04:00
|
|
|
|
2011-08-17 19:53:30 -04:00
|
|
|
<dependency>
|
2012-09-21 19:50:33 -04:00
|
|
|
<groupId>org.apache.logging.log4j.adapters</groupId>
|
2012-09-09 11:37:27 -04:00
|
|
|
<artifactId>log4j12-api</artifactId>
|
2011-08-17 19:53:30 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2012-09-09 11:38:26 -04:00
|
|
|
<dependency>
|
2012-09-21 19:50:33 -04:00
|
|
|
<groupId>org.apache.logging.log4j.adapters</groupId>
|
2012-11-15 04:14:49 -05:00
|
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
2012-09-09 11:38:26 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2011-08-17 19:53:30 -04:00
|
|
|
<dependency>
|
2012-05-29 09:29:06 -04:00
|
|
|
<groupId>org.hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
2011-08-17 19:53:30 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2012-09-21 19:50:33 -04:00
|
|
|
<groupId>org.apache.logging.log4j.adapters</groupId>
|
2012-09-09 11:37:27 -04:00
|
|
|
<artifactId>log4j-jcl</artifactId>
|
2011-08-17 19:53:30 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2012-04-06 13:57:23 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2011-08-17 19:53:30 -04:00
|
|
|
<artifactId>redback-authentication-memory</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<version>${redback.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-04-06 13:57:23 -04:00
|
|
|
<groupId>org.apache.archiva.redback</groupId>
|
2011-08-17 19:53:30 -04:00
|
|
|
<artifactId>redback-keys-memory</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<version>${redback.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2011-08-19 03:54:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2011-10-05 06:23:09 -04:00
|
|
|
<artifactId>metadata-store-jcr</artifactId>
|
2011-08-19 03:54:14 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2011-10-05 06:23:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jackrabbit</groupId>
|
|
|
|
<artifactId>jackrabbit-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
2012-09-09 11:37:27 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
</exclusion>
|
2011-10-05 06:23:09 -04:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2012-06-25 11:54:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-queries</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-memory</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-highlighter</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</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>
|
|
|
|
|
2012-02-04 17:17:53 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-http-lightweight</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2012-03-08 04:33:31 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-test-mocks</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2012-03-24 14:23:43 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.easytesting</groupId>
|
2012-07-03 19:11:27 -04:00
|
|
|
<artifactId>fest-assert-core</artifactId>
|
2012-03-24 14:23:43 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2012-06-15 17:09:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
<artifactId>tomcat-embed-core</artifactId>
|
|
|
|
<version>${tomcat7Version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tomcat</groupId>
|
|
|
|
<artifactId>tomcat-juli</artifactId>
|
|
|
|
<version>${tomcat7Version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
<artifactId>tomcat-embed-logging-juli</artifactId>
|
|
|
|
<version>${tomcat7Version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tomcat</groupId>
|
|
|
|
<artifactId>tomcat-servlet-api</artifactId>
|
|
|
|
<version>${tomcat7Version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2012-09-18 18:00:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-metadata-consumer</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-06-15 17:09:19 -04:00
|
|
|
|
2011-08-17 19:53:30 -04:00
|
|
|
</dependencies>
|
2011-08-23 10:46:03 -04:00
|
|
|
|
|
|
|
<build>
|
2011-10-01 01:17:00 -04:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>src/test/repo-with-osgi/**</exclude>
|
2012-09-18 18:00:57 -04:00
|
|
|
<exclude>src/test/repo-with-osgi-stage/**</exclude>
|
2012-07-02 16:25:06 -04:00
|
|
|
<exclude>src/test/repo-with-classifier-only/**</exclude>
|
|
|
|
<exclude>src/test/repo-with-snapshots/**</exclude>
|
2011-10-01 01:17:00 -04:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2011-08-23 10:46:03 -04:00
|
|
|
<plugins>
|
2011-11-24 18:04:57 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Bundle-SymbolicName>org.apache.archiva.rest.services</Bundle-SymbolicName>
|
|
|
|
<Bundle-Version>${project.version}</Bundle-Version>
|
|
|
|
<Require-Bundle>org.apache.cxf.bundle,org.springframework.beans,org.apache.archiva.rest.api</Require-Bundle>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-08-23 12:35:49 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2012-10-03 06:28:26 -04:00
|
|
|
<argLine>-Xmx512m -Xms512m -server -XX:MaxPermSize=256m</argLine>
|
2011-08-23 12:35:49 -04:00
|
|
|
<systemPropertyVariables>
|
2011-10-01 01:05:16 -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-09-28 17:35:11 -04:00
|
|
|
<archiva.baseRestUrl>${archiva.baseRestUrl}</archiva.baseRestUrl>
|
2011-09-28 17:37:22 -04:00
|
|
|
<rest.admin.pwd>${rest.admin.pwd}</rest.admin.pwd>
|
2011-11-07 03:29:35 -05:00
|
|
|
<redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
|
|
|
|
<redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
|
2012-04-02 17:02:29 -04:00
|
|
|
<basedir>${basedir}</basedir>
|
2012-09-18 18:00:57 -04:00
|
|
|
<builddir>${project.build.directory}</builddir>
|
2012-06-25 11:54:21 -04:00
|
|
|
<org.apache.jackrabbit.maxCacheMemory>1</org.apache.jackrabbit.maxCacheMemory>
|
|
|
|
<org.apache.jackrabbit.maxMemoryPerCache>1</org.apache.jackrabbit.maxMemoryPerCache>
|
|
|
|
<!--org.apache.jackrabbit.minMemoryPerCache>1</org.apache.jackrabbit.minMemoryPerCache-->
|
2011-08-23 12:35:49 -04:00
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-08-23 10:46:03 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2011-08-17 19:53:30 -04:00
|
|
|
</project>
|