2009-10-07 06:12:41 -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.
|
|
|
|
-->
|
|
|
|
|
2007-09-16 02:39:24 -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">
|
2007-03-22 17:10:28 -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>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-03-22 17:10:28 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>archiva-model</artifactId>
|
2007-03-22 18:03:11 -04:00
|
|
|
<name>Archiva Base :: Model</name>
|
2007-03-22 17:10:28 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
</dependency>
|
2007-05-17 18:16:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
</dependency>
|
2007-03-22 17:10:28 -04:00
|
|
|
<dependency>
|
2008-04-07 09:04:30 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-common</artifactId>
|
|
|
|
</dependency>
|
2008-04-09 13:19:31 -04:00
|
|
|
<dependency>
|
2011-05-16 17:26:24 -04:00
|
|
|
<groupId>org.codehaus.redback.components</groupId>
|
2008-04-09 13:19:31 -04:00
|
|
|
<artifactId>plexus-spring</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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
2009-07-16 03:45:17 -04:00
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
2009-03-13 22:33:57 -04:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2007-03-22 17:10:28 -04:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2009-02-11 00:45:52 -05:00
|
|
|
<artifactId>plexus-component-metadata</artifactId>
|
2007-03-22 17:10:28 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
2009-12-02 05:23:42 -05:00
|
|
|
<version>1.3.0</version>
|
2007-03-22 17:10:28 -04:00
|
|
|
<packageWithVersion>false</packageWithVersion>
|
2009-03-06 01:48:58 -05:00
|
|
|
<models>
|
2009-02-12 01:47:36 -05:00
|
|
|
<model>src/main/mdo/archiva-base.xml</model>
|
2009-03-06 01:48:58 -05:00
|
|
|
</models>
|
2007-03-22 17:10:28 -04:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>archiva-base</id>
|
|
|
|
<goals>
|
|
|
|
<goal>java</goal>
|
|
|
|
<goal>xsd</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
2009-03-06 01:48:58 -05:00
|
|
|
</executions>
|
2007-03-22 17:10:28 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<instrumentation>
|
|
|
|
<!-- exclude generated -->
|
|
|
|
<excludes>
|
|
|
|
<exclude>org/apache/maven/archiva/reporting/model/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</instrumentation>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2009-07-16 03:45:17 -04:00
|
|
|
</project>
|