aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-cli/pom.xml
diff options
context:
space:
mode:
authorJason van Zyl <jvanzyl@apache.org>2006-11-03 02:09:38 +0000
committerJason van Zyl <jvanzyl@apache.org>2006-11-03 02:09:38 +0000
commitf05bc0c3dda483c9a6be31a0a55aecae27279bc0 (patch)
treee251f7698f159dc500f194893ebc1e6a480a67eb /archiva-cli/pom.xml
parentba4f20ef29b67e76ee9b56ac280c0147a6b3ed1f (diff)
downloadarchiva-f05bc0c3dda483c9a6be31a0a55aecae27279bc0.tar.gz
archiva-f05bc0c3dda483c9a6be31a0a55aecae27279bc0.zip
o cli interface for archiva, using this to do the m1 -> m2 conversion
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@470635 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-cli/pom.xml')
-rw-r--r--archiva-cli/pom.xml50
1 files changed, 50 insertions, 0 deletions
diff --git a/archiva-cli/pom.xml b/archiva-cli/pom.xml
new file mode 100644
index 000000000..270533db4
--- /dev/null
+++ b/archiva-cli/pom.xml
@@ -0,0 +1,50 @@
+<?xml version="1.0"?>
+<project>
+ <parent>
+ <artifactId>archiva</artifactId>
+ <groupId>org.apache.maven.archiva</groupId>
+ <version>1.0-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>archiva-cli</artifactId>
+ <name>Archiva CLI</name>
+ <version>1.0-SNAPSHOT</version>
+ <url>http://maven.apache.org</url>
+ <dependencies>
+ <dependency>
+ <groupId>classworlds</groupId>
+ <artifactId>classworlds</artifactId>
+ <version>1.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-utils</artifactId>
+ <version>1.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven.archiva</groupId>
+ <artifactId>archiva-core</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-cli</groupId>
+ <artifactId>commons-cli</artifactId>
+ <version>1.0</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>commons-lang</artifactId>
+ <groupId>commons-lang</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>commons-logging</artifactId>
+ <groupId>commons-logging</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>ognl</groupId>
+ <artifactId>ognl</artifactId>
+ <version>2.6.7</version>
+ </dependency>
+ </dependencies>
+</project>