2006-11-02 21:09:38 -05:00
|
|
|
<?xml version="1.0"?>
|
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
|
|
|
|
~
|
|
|
|
~ 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-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-11-02 21:09:38 -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</artifactId>
|
2011-10-01 11:38:32 -04:00
|
|
|
<version>1.4-M1-SNAPSHOT</version>
|
2006-11-02 21:09:38 -05:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>archiva-cli</artifactId>
|
2011-09-01 13:09:08 -04:00
|
|
|
<name>Archiva :: Command Line Client</name>
|
2006-11-02 21:09:38 -05:00
|
|
|
<dependencies>
|
2006-11-19 01:38:20 -05:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2010-03-10 11:15:43 -05:00
|
|
|
<artifactId>archiva-repository-scanner</artifactId>
|
2006-11-19 01:38:20 -05:00
|
|
|
</dependency>
|
2009-10-16 08:35:38 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-metadata-consumer</artifactId>
|
2008-04-07 09:13:06 -04:00
|
|
|
<scope>runtime</scope>
|
2007-04-03 11:21:33 -04:00
|
|
|
</dependency>
|
2007-04-05 18:22:17 -04:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2010-03-10 11:15:43 -05:00
|
|
|
<artifactId>archiva-configuration</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-consumer-api</artifactId>
|
2007-04-03 11:21:33 -04:00
|
|
|
</dependency>
|
2006-11-02 21:09:38 -05:00
|
|
|
<dependency>
|
2008-04-07 09:13:06 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-converter</artifactId>
|
2006-11-02 21:09:38 -05:00
|
|
|
</dependency>
|
2008-04-07 21:24:10 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-file</artifactId>
|
|
|
|
</dependency>
|
2006-12-01 18:44:12 -05:00
|
|
|
<dependency>
|
2008-04-07 09:13:06 -04:00
|
|
|
<groupId>com.google.code.cli-parser</groupId>
|
|
|
|
<artifactId>cli</artifactId>
|
|
|
|
<version>7</version>
|
2006-12-01 18:44:12 -05:00
|
|
|
</dependency>
|
2011-06-15 11:30:53 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact-manager</artifactId>
|
|
|
|
</dependency>
|
2010-03-10 11:15:43 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
</dependency>
|
2008-08-07 01:57:37 -04:00
|
|
|
<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>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<scope>compile</scope>
|
2008-08-07 01:57:37 -04:00
|
|
|
</dependency>
|
2006-11-02 21:09:38 -05:00
|
|
|
</dependencies>
|
2006-11-03 21:17:08 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2008-04-07 09:13:06 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2009-11-25 20:25:48 -05:00
|
|
|
<version>1.2.2</version>
|
2008-04-07 09:13:06 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<finalName>apache-archiva-cli-${project.version}</finalName>
|
|
|
|
<transformers>
|
2009-07-29 04:41:34 -04:00
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
|
|
|
|
<resource>META-INF/spring.handlers</resource>
|
2009-07-30 02:15:04 -04:00
|
|
|
</transformer>
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.XmlAppendingTransformer">
|
|
|
|
<resource>META-INF/spring-context.xml</resource>
|
2009-07-29 04:41:34 -04:00
|
|
|
</transformer>
|
2008-04-07 09:13:06 -04:00
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ComponentsXmlResourceTransformer" />
|
|
|
|
</transformers>
|
|
|
|
<artifactSet>
|
|
|
|
<excludes>
|
2010-01-19 01:15:09 -05:00
|
|
|
<exclude>xerces:xercesImpl</exclude>
|
2008-04-07 09:13:06 -04:00
|
|
|
<exclude>xml-apis:xml-apis</exclude>
|
|
|
|
<exclude>xalan:xalan</exclude>
|
|
|
|
<exclude>commons-beanutils:commons-beanutils</exclude>
|
|
|
|
</excludes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2007-05-11 19:04:05 -04:00
|
|
|
<version>2.1</version>
|
2006-11-03 21:17:08 -05:00
|
|
|
<configuration>
|
2006-11-06 13:40:17 -05:00
|
|
|
<archive>
|
|
|
|
<manifest>
|
2011-09-16 03:32:43 -04:00
|
|
|
<mainClass>org.apache.archiva.cli.ArchivaCli</mainClass>
|
2006-11-06 13:40:17 -05:00
|
|
|
</manifest>
|
|
|
|
</archive>
|
2006-11-03 21:17:08 -05:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-03-13 22:33:57 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<executable>java</executable>
|
2011-09-16 03:32:43 -04:00
|
|
|
<mainClass>org.apache.archiva.cli.ArchivaCli</mainClass>
|
2009-03-13 22:33:57 -04:00
|
|
|
<arguments>
|
|
|
|
</arguments>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2006-11-03 21:17:08 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2006-11-02 21:09:38 -05:00
|
|
|
</project>
|