2006-05-25 19:10:58 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2005-12-29 23:37:28 -05:00
|
|
|
<!--
|
2007-05-22 12:06:58 -04: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
|
|
|
|
~
|
|
|
|
~ 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.
|
2010-02-10 21:53:26 -05: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-05-13 19:01:31 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2007-12-20 19:16:59 -05:00
|
|
|
<prerequisites>
|
|
|
|
<maven>2.0.6</maven>
|
|
|
|
</prerequisites>
|
2008-02-20 23:49:03 -05:00
|
|
|
|
2007-11-11 08:14:20 -05:00
|
|
|
<parent>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-11-11 08:14:20 -05:00
|
|
|
<artifactId>archiva-parent</artifactId>
|
2010-02-12 10:21:53 -05:00
|
|
|
<version>6-SNAPSHOT</version>
|
2008-04-18 23:07:20 -04:00
|
|
|
<relativePath>../parent/pom.xml</relativePath>
|
2007-11-11 08:14:20 -05:00
|
|
|
</parent>
|
2007-05-13 19:01:31 -04:00
|
|
|
<name>Archiva</name>
|
2007-11-11 08:14:20 -05:00
|
|
|
<artifactId>archiva</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2008-05-10 17:14:19 -04:00
|
|
|
<url>http://archiva.apache.org</url>
|
2007-11-11 08:14:20 -05:00
|
|
|
<scm>
|
2009-08-27 05:34:26 -04:00
|
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/archiva/trunk</connection>
|
|
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/archiva/trunk</developerConnection>
|
|
|
|
<url>http://svn.apache.org/viewvc/archiva/trunk</url>
|
2007-11-11 08:14:20 -05:00
|
|
|
</scm>
|
|
|
|
|
2007-05-13 19:01:31 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2008-03-29 06:12:41 -04:00
|
|
|
<!-- We want to package up license resources in the JARs produced -->
|
2007-05-13 19:01:31 -04:00
|
|
|
<plugin>
|
2008-03-29 06:12:41 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
2008-03-29 06:12:41 -04:00
|
|
|
<goal>process</goal>
|
2007-05-13 19:01:31 -04:00
|
|
|
</goals>
|
2008-03-29 06:12:41 -04:00
|
|
|
<configuration>
|
|
|
|
<resourceBundles>
|
|
|
|
<resourceBundle>org.apache:apache-jar-resource-bundle:1.3</resourceBundle>
|
|
|
|
</resourceBundles>
|
|
|
|
</configuration>
|
2007-05-13 19:01:31 -04:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2008-07-07 05:45:58 -04:00
|
|
|
<plugin>
|
2008-06-14 02:27:11 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2008-04-14 00:58:17 -04:00
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
2008-10-07 07:40:56 -04:00
|
|
|
<version>1.0-alpha-4</version>
|
2008-04-14 00:58:17 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<bannedDependencies>
|
|
|
|
<excludes>
|
|
|
|
<exclude>org.codehaus.plexus:plexus-container-default</exclude>
|
2009-03-13 22:33:57 -04:00
|
|
|
<exclude>org.codehaus.plexus:plexus-log4j-logging</exclude>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclude>commons-logging:commons-logging</exclude>
|
2009-07-16 03:45:17 -04:00
|
|
|
<exclude>org.slf4j:jcl104-over-slf4j</exclude>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclude>velocity:velocity-dep</exclude>
|
|
|
|
<exclude>classworlds:classworlds</exclude>
|
|
|
|
<exclude>javax.transaction:jta</exclude>
|
|
|
|
<exclude>javax.sql:jdbc-stdext</exclude>
|
2008-07-07 05:45:58 -04:00
|
|
|
<exclude>ant:ant-optional</exclude>
|
|
|
|
<exclude>xom:xom</exclude>
|
2008-10-01 05:11:06 -04:00
|
|
|
<exclude>org.codehaus.plexus:plexus-xwork-integration</exclude>
|
2009-07-16 03:45:17 -04:00
|
|
|
<exclude>plexus:plexus-utils</exclude>
|
2008-04-14 00:58:17 -04:00
|
|
|
</excludes>
|
|
|
|
</bannedDependencies>
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2008-07-07 05:45:58 -04:00
|
|
|
</plugin>
|
2008-03-29 06:21:20 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2009-02-11 00:45:52 -05:00
|
|
|
<artifactId>plexus-component-metadata</artifactId>
|
|
|
|
<version>1.0-beta-3.0.5</version>
|
2008-03-29 06:21:20 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>generate</id>
|
2009-12-07 17:32:10 -05:00
|
|
|
<phase>generate-resources</phase>
|
2008-03-29 06:21:20 -04:00
|
|
|
<goals>
|
2009-02-11 00:45:52 -05:00
|
|
|
<goal>generate-metadata</goal>
|
2008-03-29 06:21:20 -04:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2007-05-13 19:01:31 -04:00
|
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
2005-11-27 22:15:35 -05:00
|
|
|
<plugins>
|
2008-03-29 06:21:20 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-maven-plugin</artifactId>
|
2009-02-12 01:47:36 -05:00
|
|
|
<version>1.0</version>
|
2009-03-06 03:15:45 -05:00
|
|
|
<configuration>
|
|
|
|
<useJava5>true</useJava5>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
2009-02-12 01:47:36 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.modello</groupId>
|
|
|
|
<artifactId>modello-plugin-plexus-registry</artifactId>
|
|
|
|
<version>1.0-alpha-21</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2008-03-29 06:21:20 -04:00
|
|
|
</plugin>
|
2009-01-20 12:00:03 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.2-beta-3</version>
|
|
|
|
</plugin>
|
2007-05-13 19:01:31 -04:00
|
|
|
<plugin>
|
2008-03-29 06:12:41 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.0.2</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
<configuration>
|
2008-03-29 06:12:41 -04:00
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
2007-05-13 19:01:31 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2008-03-29 06:12:41 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
|
|
|
<version>1.0-beta-2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>1.0-alpha-4</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
2010-01-12 20:41:18 -05:00
|
|
|
<version>2.0-beta-9</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
<configuration>
|
2008-03-28 20:35:44 -04:00
|
|
|
<tagBase>https://svn.apache.org/repos/asf/archiva/tags</tagBase>
|
2008-03-29 06:12:41 -04:00
|
|
|
<useReleaseProfile>false</useReleaseProfile>
|
2010-01-12 20:42:00 -05:00
|
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
2008-03-29 06:12:41 -04:00
|
|
|
<goals>deploy</goals>
|
2010-01-12 20:41:18 -05:00
|
|
|
<preparationGoals>clean</preparationGoals>
|
2010-01-12 21:58:52 -05:00
|
|
|
<!-- TODO: merge these when upgrading to latest ASF parent POM -->
|
|
|
|
<arguments>-Papache-release,release</arguments>
|
2007-05-13 19:01:31 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2008-03-29 06:12:41 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.4.2</version>
|
2008-06-03 03:03:39 -04:00
|
|
|
<configuration>
|
|
|
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
|
|
|
</configuration>
|
2008-03-29 06:12:41 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-idea-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<jdkLevel>1.5</jdkLevel>
|
|
|
|
</configuration>
|
2007-05-13 19:01:31 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
<modules>
|
2010-02-11 23:16:43 -05:00
|
|
|
<module>skin</module>
|
2007-05-13 19:01:31 -04:00
|
|
|
<module>archiva-cli</module>
|
2007-11-21 03:26:57 -05:00
|
|
|
<module>archiva-docs</module>
|
2008-03-28 23:09:22 -04:00
|
|
|
<module>archiva-jetty</module>
|
|
|
|
<module>archiva-modules</module>
|
2007-05-13 19:01:31 -04:00
|
|
|
</modules>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2007-09-27 20:12:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>easymock</groupId>
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
<version>1.2_Java1.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2008-10-06 05:05:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>easymock</groupId>
|
|
|
|
<artifactId>easymockclassextension</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2009-03-13 22:33:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>httpunit</groupId>
|
|
|
|
<artifactId>httpunit</artifactId>
|
|
|
|
<version>1.6.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2008-04-17 23:05:18 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jackrabbit</groupId>
|
|
|
|
<artifactId>jackrabbit-webdav</artifactId>
|
2008-12-07 21:39:39 -05:00
|
|
|
<version>1.5.0</version>
|
2008-07-02 00:16:17 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2008-04-17 23:05:18 -04:00
|
|
|
</dependency>
|
2008-07-09 00:27:30 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>xerces</groupId>
|
2008-12-17 04:27:44 -05:00
|
|
|
<artifactId>xercesImpl</artifactId>
|
|
|
|
<version>2.8.1</version>
|
2008-07-09 00:27:30 -04:00
|
|
|
</dependency>
|
2009-02-03 20:09:17 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.sonatype.nexus</groupId>
|
|
|
|
<artifactId>nexus-indexer</artifactId>
|
2009-05-23 03:28:12 -04:00
|
|
|
<version>2.0.0</version>
|
2009-02-03 20:09:17 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>classworlds</groupId>
|
|
|
|
<artifactId>classworlds</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>velocity</groupId>
|
|
|
|
<artifactId>velocity-dep</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-registry</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-settings</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
<artifactId>activation</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</dependency>
|
2009-10-16 08:35:38 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>metadata-model</artifactId>
|
2010-01-19 01:15:09 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2009-10-16 08:35:38 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>metadata-repository-api</artifactId>
|
2010-01-19 01:15:09 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2009-10-16 08:35:38 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>metadata-repository-file</artifactId>
|
2010-01-19 01:15:09 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2009-10-16 08:35:38 -04:00
|
|
|
</dependency>
|
2009-12-07 17:32:10 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>repository-statistics</artifactId>
|
2010-01-19 01:15:09 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2009-12-07 17:32:10 -05:00
|
|
|
</dependency>
|
2009-11-30 09:19:56 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2009-12-15 18:07:36 -05:00
|
|
|
<artifactId>problem-reports</artifactId>
|
2010-01-19 01:15:09 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>audit</artifactId>
|
|
|
|
<version>1.4-SNAPSHOT</version>
|
2009-11-30 09:19:56 -05:00
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2009-12-15 18:07:36 -05:00
|
|
|
<artifactId>maven2-repository</artifactId>
|
2010-01-19 01:15:09 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
2007-05-29 11:13:29 -04:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2009-12-15 18:07:36 -05:00
|
|
|
<artifactId>archiva-applet</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-29 11:13:29 -04:00
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2009-12-15 18:07:36 -05:00
|
|
|
<artifactId>archiva-artifact-converter</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-29 11:13:29 -04:00
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-artifact-reports</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2008-04-15 00:44:17 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-checksum</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-common</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-configuration</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-consumer-api</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-converter</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-06-25 06:37:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-06-25 06:37:47 -04:00
|
|
|
<artifactId>archiva-dependency-graph</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-06-25 06:37:47 -04:00
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-core-consumers</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
2010-01-19 01:15:09 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-metadata-consumer</artifactId>
|
|
|
|
<version>1.4-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-database</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-database-consumers</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-indexer</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-lucene-consumers</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-model</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-policies</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-proxy</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-repository-layer</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2009-10-16 08:35:38 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-repository-scanner</artifactId>
|
2010-01-19 01:15:09 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2009-11-19 12:16:20 -05:00
|
|
|
<artifactId>archiva-scheduler-api</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2009-11-19 12:16:20 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-scheduler-repository</artifactId>
|
2010-01-19 01:15:09 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2009-11-19 12:16:20 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-scheduler-indexing</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-security</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-signature-consumers</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-29 11:13:29 -04:00
|
|
|
<artifactId>archiva-transaction</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-29 11:13:29 -04:00
|
|
|
</dependency>
|
2007-11-21 05:45:25 -05:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-11-21 05:45:25 -05:00
|
|
|
<artifactId>archiva-docs</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-11-21 05:45:25 -05:00
|
|
|
<type>zip</type>
|
|
|
|
<classifier>docs</classifier>
|
|
|
|
</dependency>
|
2007-05-29 11:13:29 -04:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-webapp</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>archiva-xml-tools</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
2008-02-20 23:49:03 -05:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2008-03-14 07:13:29 -04:00
|
|
|
<artifactId>archiva-webdav</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2008-02-20 23:49:03 -05:00
|
|
|
</dependency>
|
2008-04-07 11:50:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-rss</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2008-04-07 11:50:57 -04:00
|
|
|
</dependency>
|
2008-10-20 01:59:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-xmlrpc-api</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2008-10-20 01:59:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-xmlrpc-services</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2008-10-20 01:59:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-xmlrpc-security</artifactId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2008-10-20 01:59:47 -04:00
|
|
|
</dependency>
|
2008-03-15 23:15:43 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-spring</artifactId>
|
2008-10-17 04:35:26 -04:00
|
|
|
<version>1.2</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2008-03-15 23:15:43 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-06-14 02:27:11 -04:00
|
|
|
<groupId>stax</groupId>
|
|
|
|
<artifactId>stax</artifactId>
|
|
|
|
<version>1.2.0</version>
|
2008-03-15 23:15:43 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-06-14 02:27:11 -04:00
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
<version>1.3</version>
|
2008-03-15 23:15:43 -04:00
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
<version>3.2</version>
|
|
|
|
</dependency>
|
2008-03-11 03:59:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
2008-02-23 23:49:48 -05:00
|
|
|
<version>1.4</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
2007-05-19 10:23:14 -04:00
|
|
|
<version>10.1.3.1</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derbytools</artifactId>
|
2007-05-19 10:23:14 -04:00
|
|
|
<version>10.1.3.1</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
<version>1.6.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<version>1.8.0.7</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<scope>test</scope>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
|
<version>1.1</version>
|
2007-10-12 14:01:04 -04:00
|
|
|
<exclusions>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>xom</groupId>
|
|
|
|
<artifactId>xom</artifactId>
|
|
|
|
</exclusion>
|
2007-10-12 14:01:04 -04:00
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jpox</groupId>
|
|
|
|
<artifactId>jpox</artifactId>
|
2008-01-06 21:23:11 -05:00
|
|
|
<version>1.1.9</version>
|
2007-10-12 14:01:04 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.transaction</groupId>
|
|
|
|
<artifactId>jta</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
<version>2.0</version>
|
2007-10-12 14:01:04 -04:00
|
|
|
<scope>provided</scope>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jstl</artifactId>
|
|
|
|
<version>1.1.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
2008-03-14 07:13:29 -04:00
|
|
|
<version>1.2.14</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-core</artifactId>
|
2008-11-04 23:04:49 -05:00
|
|
|
<version>2.4.0</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
2008-12-15 21:13:25 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-queries</artifactId>
|
|
|
|
<version>2.4.0</version>
|
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
</dependency>
|
2008-10-20 01:59:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.xmlrpc</groupId>
|
|
|
|
<artifactId>xmlrpc-server</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
2009-11-25 08:48:16 -05:00
|
|
|
<version>${maven3x.version}</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
2009-11-25 00:32:18 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model-builder</artifactId>
|
|
|
|
<version>${maven3x.version}</version>
|
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-component-api</artifactId>
|
|
|
|
<version>1.0-alpha-22</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-digest</artifactId>
|
2007-05-21 17:20:03 -04:00
|
|
|
<version>1.1</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-expression-evaluator</artifactId>
|
2007-10-23 04:15:23 -04:00
|
|
|
<version>1.0-rc1</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-i18n</artifactId>
|
|
|
|
<version>1.0-beta-6</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-quartz</artifactId>
|
|
|
|
<version>1.0-alpha-3</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-slf4j-logging</artifactId>
|
|
|
|
<version>1.1-alpha-1</version>
|
2008-03-15 23:15:43 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
</exclusion>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</exclusion>
|
2008-03-15 23:15:43 -04:00
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-taskqueue</artifactId>
|
2008-06-03 03:04:53 -04:00
|
|
|
<version>1.0-alpha-8</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
2008-04-07 02:23:47 -04:00
|
|
|
<version>1.4.5</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-06-14 02:27:11 -04:00
|
|
|
<groupId>org.codehaus.plexus.cache</groupId>
|
|
|
|
<artifactId>plexus-cache-api</artifactId>
|
|
|
|
<version>1.0-alpha-2</version>
|
2007-11-08 10:42:58 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2008-06-14 02:27:11 -04:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
2007-11-08 10:42:58 -05:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus.cache</groupId>
|
|
|
|
<artifactId>plexus-cache-ehcache</artifactId>
|
|
|
|
<version>1.0-alpha-2</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-09-21 19:06:53 -04:00
|
|
|
</dependency>
|
2008-10-01 05:11:06 -04:00
|
|
|
|
|
|
|
<!-- redback -->
|
|
|
|
|
2007-09-21 19:06:53 -04:00
|
|
|
<dependency>
|
2008-09-17 05:34:02 -04:00
|
|
|
<groupId>org.codehaus.redback</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>redback-rbac-memory</artifactId>
|
|
|
|
<version>${redback.version}</version>
|
2007-11-06 13:26:04 -05:00
|
|
|
<scope>test</scope>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2008-10-01 05:11:06 -04:00
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
2008-06-14 02:27:11 -04:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-11-06 13:26:04 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-09-17 05:34:02 -04:00
|
|
|
<groupId>org.codehaus.redback</groupId>
|
2007-11-06 13:26:04 -05:00
|
|
|
<artifactId>redback-users-memory</artifactId>
|
|
|
|
<version>${redback.version}</version>
|
|
|
|
<scope>test</scope>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2008-10-01 05:11:06 -04:00
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
2008-06-14 02:27:11 -04:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-11-06 13:26:04 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-09-17 05:34:02 -04:00
|
|
|
<groupId>org.codehaus.redback</groupId>
|
2007-11-06 13:26:04 -05:00
|
|
|
<artifactId>redback-keys-memory</artifactId>
|
|
|
|
<version>${redback.version}</version>
|
|
|
|
<scope>test</scope>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2008-10-01 05:11:06 -04:00
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
2008-06-14 02:27:11 -04:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-11-06 13:26:04 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-09-17 05:34:02 -04:00
|
|
|
<groupId>org.codehaus.redback</groupId>
|
2007-11-06 13:26:04 -05:00
|
|
|
<artifactId>redback-rbac-model</artifactId>
|
|
|
|
<version>${redback.version}</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2008-10-01 05:11:06 -04:00
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
2008-06-14 02:27:11 -04:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-11-06 13:26:04 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-09-17 05:34:02 -04:00
|
|
|
<groupId>org.codehaus.redback</groupId>
|
2007-11-06 13:26:04 -05:00
|
|
|
<artifactId>redback-authorization-rbac</artifactId>
|
|
|
|
<version>${redback.version}</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2008-10-01 05:11:06 -04:00
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
2008-06-14 02:27:11 -04:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-09-17 05:34:02 -04:00
|
|
|
<groupId>org.codehaus.redback</groupId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<artifactId>redback-rbac-role-manager</artifactId>
|
|
|
|
<version>${redback.version}</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2008-10-01 05:11:06 -04:00
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
2008-06-14 02:27:11 -04:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
2007-11-06 13:26:04 -05:00
|
|
|
<dependency>
|
2008-09-17 05:34:02 -04:00
|
|
|
<groupId>org.codehaus.redback</groupId>
|
2007-11-06 13:26:04 -05:00
|
|
|
<artifactId>redback-system</artifactId>
|
|
|
|
<version>${redback.version}</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2008-10-01 05:11:06 -04:00
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
2008-06-14 02:27:11 -04:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-11-06 13:26:04 -05:00
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
2008-09-17 05:34:02 -04:00
|
|
|
<groupId>org.codehaus.redback</groupId>
|
2008-10-26 19:57:05 -04:00
|
|
|
<artifactId>redback-common-integrations</artifactId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<version>${redback.version}</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2008-10-01 05:11:06 -04:00
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
2008-06-14 02:27:11 -04:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-09-17 05:34:02 -04:00
|
|
|
<groupId>org.codehaus.redback</groupId>
|
2008-10-01 05:11:06 -04:00
|
|
|
<artifactId>redback-struts2-content</artifactId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<version>${redback.version}</version>
|
|
|
|
<type>war</type>
|
2007-10-12 14:01:04 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>classworlds</groupId>
|
|
|
|
<artifactId>classworlds</artifactId>
|
|
|
|
</exclusion>
|
2008-10-01 05:11:06 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
2007-10-12 14:01:04 -04:00
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-09-17 05:34:02 -04:00
|
|
|
<groupId>org.codehaus.redback</groupId>
|
2008-10-01 05:11:06 -04:00
|
|
|
<artifactId>redback-struts2-integration</artifactId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<version>${redback.version}</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>classworlds</groupId>
|
|
|
|
<artifactId>classworlds</artifactId>
|
|
|
|
</exclusion>
|
2009-07-16 03:45:17 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
|
|
|
</exclusion>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>velocity</groupId>
|
|
|
|
<artifactId>velocity-dep</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
2009-03-06 03:15:45 -05:00
|
|
|
</exclusion>
|
2008-06-14 02:27:11 -04:00
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
2008-10-01 05:11:06 -04:00
|
|
|
|
|
|
|
<!-- redback -->
|
|
|
|
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus.registry</groupId>
|
|
|
|
<artifactId>plexus-registry-api</artifactId>
|
|
|
|
<version>1.0-alpha-2</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus.registry</groupId>
|
|
|
|
<artifactId>plexus-registry-commons</artifactId>
|
|
|
|
<version>1.0-alpha-2</version>
|
2007-10-12 14:01:04 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant-optional</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>jdom</groupId>
|
|
|
|
<artifactId>jdom</artifactId>
|
|
|
|
</exclusion>
|
2007-11-08 10:42:58 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging-api</artifactId>
|
|
|
|
</exclusion>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
2007-10-12 14:01:04 -04:00
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
2009-07-16 03:45:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging-api</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>opensymphony</groupId>
|
|
|
|
<artifactId>sitemesh</artifactId>
|
|
|
|
<version>2.2.1</version>
|
|
|
|
</dependency>
|
2008-06-14 02:27:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
2009-07-16 03:45:17 -04:00
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
2009-03-13 22:33:57 -04:00
|
|
|
<scope>runtime</scope>
|
2008-06-14 02:27:11 -04:00
|
|
|
</dependency>
|
2008-03-14 07:13:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
2009-07-16 03:45:17 -04:00
|
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
<scope>runtime</scope>
|
2008-03-14 07:13:29 -04:00
|
|
|
</dependency>
|
2008-06-14 02:27:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2009-07-16 03:45:17 -04:00
|
|
|
<version>${slf4j.version}</version>
|
2009-03-13 22:33:57 -04:00
|
|
|
<scope>test</scope>
|
2008-06-14 02:27:11 -04:00
|
|
|
</dependency>
|
2008-03-14 07:13:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2009-07-16 03:45:17 -04:00
|
|
|
<version>${slf4j.version}</version>
|
2009-03-13 22:33:57 -04:00
|
|
|
<scope>runtime</scope>
|
2008-03-14 07:13:29 -04:00
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>taglibs</groupId>
|
|
|
|
<artifactId>standard</artifactId>
|
|
|
|
<version>1.1.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-file</artifactId>
|
|
|
|
<version>${wagon.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
2008-07-01 21:28:43 -04:00
|
|
|
<artifactId>wagon-http-lightweight</artifactId>
|
2007-05-13 19:01:31 -04:00
|
|
|
<version>${wagon.version}</version>
|
2009-03-06 03:15:45 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>nekohtml</groupId>
|
|
|
|
<artifactId>xercesMinimal</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-provider-api</artifactId>
|
|
|
|
<version>${wagon.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-10-01 05:11:06 -04:00
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
<artifactId>struts2-core</artifactId>
|
|
|
|
<version>2.0.11.2</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
<artifactId>struts2-spring-plugin</artifactId>
|
|
|
|
<version>2.0.11.2</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xmlunit</groupId>
|
|
|
|
<artifactId>xmlunit</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2008-05-06 09:32:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
<version>1.5.2</version>
|
|
|
|
</dependency>
|
2008-06-14 02:27:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty</artifactId>
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2008-10-20 01:59:47 -04:00
|
|
|
<!-- xmlrpc -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atlassian.xmlrpc</groupId>
|
|
|
|
<artifactId>atlassian-xmlrpc-binder-annotations</artifactId>
|
|
|
|
<version>${binder.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atlassian.xmlrpc</groupId>
|
|
|
|
<artifactId>atlassian-xmlrpc-binder-server-spring</artifactId>
|
|
|
|
<version>${binder.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atlassian.xmlrpc</groupId>
|
|
|
|
<artifactId>atlassian-xmlrpc-binder</artifactId>
|
|
|
|
<version>${binder.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atlassian.xmlrpc</groupId>
|
|
|
|
<artifactId>atlassian-xmlrpc-binder-testing</artifactId>
|
|
|
|
<version>${binder.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2008-06-14 02:27:11 -04:00
|
|
|
<!-- Transitive versions to manage -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
2009-01-20 00:32:11 -05:00
|
|
|
<version>${spring.version}</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
2009-01-20 00:32:11 -05:00
|
|
|
<version>${spring.version}</version>
|
2008-10-01 05:11:06 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-beans</artifactId>
|
2009-01-20 00:32:11 -05:00
|
|
|
<version>${spring.version}</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2008-10-20 01:59:47 -04:00
|
|
|
<!-- use spring test in xmlrpc?
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>2.5.1</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
-->
|
2008-06-14 02:27:11 -04:00
|
|
|
<dependency>
|
2009-11-25 08:48:16 -05:00
|
|
|
<groupId>jdom</groupId>
|
|
|
|
<artifactId>jdom</artifactId>
|
|
|
|
<version>1.0</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2009-11-25 08:48:16 -05:00
|
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
|
|
<artifactId>maven-model-converter</artifactId>
|
|
|
|
<version>2.1</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2009-12-01 11:01:31 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
|
|
<artifactId>maven-dependency-tree</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2008-06-14 02:27:11 -04:00
|
|
|
<dependency>
|
2009-11-25 08:48:16 -05:00
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact-manager</artifactId>
|
|
|
|
<version>${maven.version}</version>
|
2008-06-14 02:27:11 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2009-12-01 11:01:31 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
<version>${maven.version}</version>
|
|
|
|
</dependency>
|
2009-11-25 08:48:16 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-repository-metadata</artifactId>
|
|
|
|
<version>${maven.version}</version>
|
|
|
|
</dependency>
|
2008-06-14 02:27:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
<version>1.3.0</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2007-05-13 19:01:31 -04:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2008-03-29 06:12:41 -04:00
|
|
|
<properties>
|
2008-04-07 02:23:47 -04:00
|
|
|
<maven.version>2.0.8</maven.version>
|
2009-11-25 00:32:18 -05:00
|
|
|
<maven3x.version>3.0-alpha-4</maven3x.version>
|
2009-02-24 19:11:47 -05:00
|
|
|
<wagon.version>1.0-beta-5</wagon.version>
|
2010-01-12 03:36:17 -05:00
|
|
|
<redback.version>1.2.3</redback.version>
|
2009-07-16 02:57:47 -04:00
|
|
|
<jetty.version>6.1.19</jetty.version>
|
2009-07-16 03:45:17 -04:00
|
|
|
<slf4j.version>1.5.8</slf4j.version>
|
2008-11-20 22:01:45 -05:00
|
|
|
<binder.version>0.9</binder.version>
|
2009-01-20 00:32:11 -05:00
|
|
|
<spring.version>2.5.6</spring.version>
|
2008-03-29 06:12:41 -04:00
|
|
|
</properties>
|
2007-05-13 19:01:31 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
2008-03-29 06:12:41 -04:00
|
|
|
<id>release</id>
|
2007-05-13 19:01:31 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2008-03-29 06:12:41 -04:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<inherited>false</inherited>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/assembly/src.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<tarLongFileMode>gnu</tarLongFileMode>
|
|
|
|
<finalName>apache-archiva-${project.version}-src</finalName>
|
|
|
|
</configuration>
|
2006-06-06 03:26:13 -04:00
|
|
|
<executions>
|
2007-05-13 19:01:31 -04:00
|
|
|
<execution>
|
2008-03-29 06:12:41 -04:00
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
2007-05-13 19:01:31 -04:00
|
|
|
<goals>
|
2008-03-29 06:12:41 -04:00
|
|
|
<goal>single</goal>
|
2007-05-13 19:01:31 -04:00
|
|
|
</goals>
|
|
|
|
</execution>
|
2006-06-06 03:26:13 -04:00
|
|
|
</executions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</plugin>
|
2008-03-29 06:12:41 -04:00
|
|
|
<!-- We want to sign the artifact, the POM, and all attached artifacts -->
|
2007-05-13 19:01:31 -04:00
|
|
|
<plugin>
|
2007-05-12 01:12:59 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2008-03-29 06:12:41 -04:00
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<passphrase>${gpg.passphrase}</passphrase>
|
|
|
|
</configuration>
|
2007-05-12 01:12:59 -04:00
|
|
|
<executions>
|
2007-05-13 19:01:31 -04:00
|
|
|
<execution>
|
|
|
|
<goals>
|
2008-03-29 06:12:41 -04:00
|
|
|
<goal>sign</goal>
|
2007-05-13 19:01:31 -04:00
|
|
|
</goals>
|
|
|
|
</execution>
|
2007-05-12 01:12:59 -04:00
|
|
|
</executions>
|
2007-05-13 19:01:31 -04:00
|
|
|
</plugin>
|
2008-03-29 06:12:41 -04:00
|
|
|
<!-- We want to deploy the artifact to a staging location for perusal -->
|
2007-05-13 19:01:31 -04:00
|
|
|
<plugin>
|
2008-03-29 06:12:41 -04:00
|
|
|
<inherited>true</inherited>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
2007-04-12 13:04:16 -04:00
|
|
|
<configuration>
|
2008-03-29 06:12:41 -04:00
|
|
|
<altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
|
|
|
|
<updateReleaseInfo>true</updateReleaseInfo>
|
2007-04-12 13:04:16 -04:00
|
|
|
</configuration>
|
2008-03-29 06:12:41 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.0.4</version>
|
2007-05-13 19:01:31 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2008-03-29 06:12:41 -04:00
|
|
|
<id>attach-sources</id>
|
2007-05-13 19:01:31 -04:00
|
|
|
<goals>
|
2008-03-29 06:12:41 -04:00
|
|
|
<goal>jar</goal>
|
2007-05-13 19:01:31 -04:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2007-06-01 11:57:21 -04:00
|
|
|
<plugin>
|
2008-03-29 06:12:41 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2008-07-07 08:15:16 -04:00
|
|
|
<version>2.4</version>
|
2007-09-12 09:20:08 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2008-03-29 06:12:41 -04:00
|
|
|
<id>attach-javadocs</id>
|
2007-09-12 09:20:08 -04:00
|
|
|
<goals>
|
2008-03-29 06:12:41 -04:00
|
|
|
<goal>jar</goal>
|
2007-09-12 09:20:08 -04:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2007-06-01 11:57:21 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2007-05-13 19:01:31 -04:00
|
|
|
</profiles>
|
2010-01-12 20:37:48 -05:00
|
|
|
<!-- TODO: we need to push this into the parent, and also upgrade to the latest ASF parent POM -->
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
2010-01-12 20:44:35 -05:00
|
|
|
<id>vmbuild.staging</id>
|
2010-01-12 20:37:48 -05:00
|
|
|
<name>Apache Release Staging Repository on VMBuild</name>
|
|
|
|
<url>http://vmbuild.apache.org/archiva/repository/staged-archiva</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2010-02-11 23:16:43 -05:00
|
|
|
</project>
|