2006-10-26 05:15:23 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
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-10-26 05:15:23 -04:00
|
|
|
~
|
2006-12-23 01:39:46 -05:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2006-10-26 05:15:23 -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-10-26 05:15:23 -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-06-08 03:15:34 -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>
|
2011-12-13 13:18:37 -05:00
|
|
|
<version>1.4-M3-SNAPSHOT</version>
|
2006-06-08 03:15:34 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2006-08-26 01:47:59 -04:00
|
|
|
<artifactId>archiva-configuration</artifactId>
|
2011-11-22 09:17:04 -05:00
|
|
|
<packaging>bundle</packaging>
|
2007-03-22 18:03:11 -04:00
|
|
|
<name>Archiva Base :: Configuration</name>
|
2006-06-08 03:15:34 -04:00
|
|
|
<dependencies>
|
2007-02-09 10:39:41 -05: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-api</artifactId>
|
2007-02-09 10:39:41 -05:00
|
|
|
</dependency>
|
2007-06-17 20:54:16 -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-06-17 20:54:16 -04:00
|
|
|
</dependency>
|
2011-05-20 16:08:12 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-configuration</groupId>
|
|
|
|
<artifactId>commons-configuration</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<!-- targeting JDK 1.4, xml parser/apis not needed -->
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
<artifactId>xerces</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
<artifactId>xercesImpl</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xalan</groupId>
|
|
|
|
<artifactId>xalan</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>servletapi</groupId>
|
|
|
|
<artifactId>servletapi</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant-optional</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2012-04-03 13:24:50 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
</dependency>
|
2011-05-20 16:08:12 -04:00
|
|
|
<dependency>
|
2012-04-13 15:45:22 -04:00
|
|
|
<groupId>org.apache.archiva.redback.components</groupId>
|
2011-05-20 16:08:12 -04:00
|
|
|
<artifactId>spring-utils</artifactId>
|
|
|
|
</dependency>
|
2007-10-11 21:26:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-expression-evaluator</artifactId>
|
|
|
|
</dependency>
|
2007-05-17 18:16:57 -04:00
|
|
|
<dependency>
|
2008-04-07 09:04:30 -04:00
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-policies</artifactId>
|
2007-05-17 18:16:57 -04:00
|
|
|
</dependency>
|
2011-06-16 09:12:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2007-10-11 14:26:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>xmlunit</groupId>
|
|
|
|
<artifactId>xmlunit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-03-13 22:33:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2006-06-08 03:15:34 -04:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>java</goal>
|
|
|
|
</goals>
|
2009-02-12 01:47:36 -05:00
|
|
|
</execution>
|
2009-03-06 04:44:47 -05:00
|
|
|
<execution>
|
2009-12-16 01:44:32 -05:00
|
|
|
<id>archiva-registry-reader</id>
|
2009-02-12 01:47:36 -05:00
|
|
|
<goals>
|
2009-03-06 04:44:47 -05:00
|
|
|
<goal>generate</goal>
|
2009-02-12 01:47:36 -05:00
|
|
|
</goals>
|
|
|
|
<configuration>
|
2009-03-06 04:44:47 -05:00
|
|
|
<generatorId>registry-reader</generatorId>
|
2009-02-12 01:47:36 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
2009-03-06 04:44:47 -05:00
|
|
|
<execution>
|
2009-12-16 01:44:32 -05:00
|
|
|
<id>archiva-registry-writer</id>
|
2009-02-12 01:47:36 -05:00
|
|
|
<goals>
|
2009-03-06 04:44:47 -05:00
|
|
|
<goal>generate</goal>
|
2009-02-12 01:47:36 -05:00
|
|
|
</goals>
|
|
|
|
<configuration>
|
2009-03-06 04:44:47 -05:00
|
|
|
<generatorId>registry-writer</generatorId>
|
2009-02-12 01:47:36 -05:00
|
|
|
</configuration>
|
2006-06-08 03:15:34 -04:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
2012-02-04 17:04:51 -05:00
|
|
|
<version>1.4.1</version>
|
2009-03-06 04:44:47 -05:00
|
|
|
<models>
|
2009-02-12 01:47:36 -05:00
|
|
|
<model>src/main/mdo/configuration.mdo</model>
|
2009-03-06 04:44:47 -05:00
|
|
|
</models>
|
2006-06-08 03:15:34 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2006-06-30 05:18:20 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<instrumentation>
|
2006-08-12 00:31:55 -04:00
|
|
|
<!-- exclude generated -->
|
2006-06-30 05:18:20 -04:00
|
|
|
<excludes>
|
2011-10-01 02:56:48 -04:00
|
|
|
<exclude>org/apache/archiva/configuration/io/**</exclude>
|
|
|
|
<exclude>org/apache/archiva/configuration/*RepositoryConfiguration.*</exclude>
|
|
|
|
<exclude>org/apache/archiva/configuration/Configuration.*</exclude>
|
|
|
|
<exclude>org/apache/archiva/configuration/Proxy.*</exclude>
|
2006-06-30 05:18:20 -04:00
|
|
|
</excludes>
|
|
|
|
</instrumentation>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-05-20 16:08:12 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<basedir>${basedir}</basedir>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
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.configuration</Bundle-SymbolicName>
|
|
|
|
<Bundle-Version>${project.version}</Bundle-Version>
|
|
|
|
<Export-Package>
|
|
|
|
org.apache.archiva.configuration*;version=${project.version}
|
|
|
|
</Export-Package>
|
|
|
|
<Import-Package>
|
|
|
|
javax.annotation,
|
|
|
|
javax.inject,
|
|
|
|
org.apache.archiva.common;version=${project.version},
|
|
|
|
org.apache.archiva.policies;version=${project.version},
|
|
|
|
org.apache.commons.collections;version="[3.2,4)",
|
|
|
|
org.apache.commons.lang;version="[2.4,3)",
|
|
|
|
org.apache.commons.configuration;version="[1.3,2)",
|
|
|
|
org.apache.commons.io;version="[1.4,2)",
|
|
|
|
org.codehaus.plexus.evaluator*,
|
2012-04-12 11:09:01 -04:00
|
|
|
org.apache.archiva.redback.components.registry,
|
2011-11-22 09:17:04 -05:00
|
|
|
org.codehaus.plexus.util,
|
2012-04-03 13:24:50 -04:00
|
|
|
org.apache.tools.ant.types.selectors,
|
2012-04-12 11:09:01 -04:00
|
|
|
org.apache.archiva.redback.components.registry,
|
2012-04-12 12:34:08 -04:00
|
|
|
org.apache.archiva.redback.components.registry.commons,
|
2012-04-13 15:46:08 -04:00
|
|
|
org.apache.archiva.redback.components.springutils,
|
2011-11-22 09:17:04 -05:00
|
|
|
org.springframework.stereotype;version="[3,4)",
|
|
|
|
org.slf4j;resolution:=optional
|
|
|
|
</Import-Package>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2006-06-08 03:15:34 -04:00
|
|
|
</plugins>
|
2011-08-25 04:42:50 -04:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
2011-10-01 01:17:00 -04:00
|
|
|
<exclude>src/main/resources/org/apache/archiva/configuration/default-archiva.xml</exclude>
|
2011-08-25 04:42:50 -04:00
|
|
|
<exclude>src/test/conf/maven-proxy-complete.conf</exclude>
|
2011-10-01 01:17:00 -04:00
|
|
|
<exclude>src/test/resources/org/apache/archiva/configuration/test-default-archiva.xml</exclude>
|
2011-08-25 04:42:50 -04:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2006-06-08 03:15:34 -04:00
|
|
|
</build>
|
|
|
|
</project>
|