mirror of https://github.com/apache/archiva.git
223 lines
8.1 KiB
XML
223 lines
8.1 KiB
XML
<?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">
|
|
<parent>
|
|
<groupId>org.apache.archiva</groupId>
|
|
<artifactId>archiva-base</artifactId>
|
|
<version>1.4-M3-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>archiva-configuration</artifactId>
|
|
<packaging>bundle</packaging>
|
|
<name>Archiva Base :: Configuration</name>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.archiva.redback.components.registry</groupId>
|
|
<artifactId>spring-registry-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.archiva.redback.components.registry</groupId>
|
|
<artifactId>spring-registry-commons</artifactId>
|
|
</dependency>
|
|
<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>
|
|
<dependency>
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.archiva.redback.components</groupId>
|
|
<artifactId>spring-utils</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.archiva.redback.components</groupId>
|
|
<artifactId>expression-evaluator</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-component-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.archiva</groupId>
|
|
<artifactId>archiva-policies</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.archiva</groupId>
|
|
<artifactId>archiva-test-utils</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.modello</groupId>
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>java</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>archiva-registry-reader</id>
|
|
<goals>
|
|
<goal>generate</goal>
|
|
</goals>
|
|
<configuration>
|
|
<generatorId>registry-reader</generatorId>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>archiva-registry-writer</id>
|
|
<goals>
|
|
<goal>generate</goal>
|
|
</goals>
|
|
<configuration>
|
|
<generatorId>registry-writer</generatorId>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<version>1.4.1</version>
|
|
<models>
|
|
<model>src/main/mdo/configuration.mdo</model>
|
|
</models>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
<configuration>
|
|
<instrumentation>
|
|
<!-- exclude generated -->
|
|
<excludes>
|
|
<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>
|
|
</excludes>
|
|
</instrumentation>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<systemPropertyVariables>
|
|
<basedir>${basedir}</basedir>
|
|
</systemPropertyVariables>
|
|
</configuration>
|
|
</plugin>
|
|
<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.apache.archiva.redback.components.evaluator*,
|
|
org.apache.archiva.redback.components.registry,
|
|
org.codehaus.plexus.util,
|
|
org.apache.tools.ant.types.selectors,
|
|
org.apache.archiva.redback.components.registry,
|
|
org.apache.archiva.redback.components.registry.commons,
|
|
org.apache.archiva.redback.components.springutils,
|
|
org.springframework.stereotype;version="[3,4)",
|
|
org.slf4j;resolution:=optional
|
|
</Import-Package>
|
|
</instructions>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.rat</groupId>
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>src/main/resources/org/apache/archiva/configuration/default-archiva.xml</exclude>
|
|
<exclude>src/test/conf/maven-proxy-complete.conf</exclude>
|
|
<exclude>src/test/resources/org/apache/archiva/configuration/test-default-archiva.xml</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</project>
|