2006-11-02 21:09:38 -05:00
|
|
|
<?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>
|
2006-11-03 21:17:08 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptor>src/main/assembly/archiva-cli-assembly.xml</descriptor>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2006-11-03 21:18:41 -05:00
|
|
|
<!-- This needs to run here as it can't run in the package phase
|
|
|
|
because the directory assembly needs to be made first. Total hack, but works.-->
|
2006-11-03 21:17:08 -05:00
|
|
|
<phase>integration-test</phase>
|
|
|
|
<configuration>
|
|
|
|
<sourceRoot>target/generated/src/main/java</sourceRoot>
|
|
|
|
<tasks>
|
|
|
|
<jar destfile="${basedir}/target/archiva-cli-1.0-SNAPSHOT-cli.jar"
|
|
|
|
basedir="${basedir}/target/archiva-cli-1.0-SNAPSHOT-cli"
|
|
|
|
manifest="${basedir}/src/main/resources/META-INF/MANIFEST.MF"/>
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2006-11-02 21:09:38 -05:00
|
|
|
</project>
|