diff options
author | Brett Porter <brett@apache.org> | 2008-04-07 13:13:06 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2008-04-07 13:13:06 +0000 |
commit | 28d9a2384a42236eef4274e163335ff3b32bbe0b (patch) | |
tree | 8e76bfcf1d610985ef7c95bc2bedcdef9326374e /archiva-cli/pom.xml | |
parent | 82f8c7d05f6346413591a0b5599342f1a7e775ec (diff) | |
download | archiva-28d9a2384a42236eef4274e163335ff3b32bbe0b.tar.gz archiva-28d9a2384a42236eef4274e163335ff3b32bbe0b.zip |
refreshed the CLI
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@645493 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-cli/pom.xml')
-rw-r--r-- | archiva-cli/pom.xml | 82 |
1 files changed, 41 insertions, 41 deletions
diff --git a/archiva-cli/pom.xml b/archiva-cli/pom.xml index cf746ec41..f2101ed79 100644 --- a/archiva-cli/pom.xml +++ b/archiva-cli/pom.xml @@ -35,44 +35,63 @@ </dependency> <dependency> <groupId>org.apache.archiva</groupId> - <artifactId>archiva-core-consumers</artifactId> + <artifactId>archiva-dependency-tree-consumer</artifactId> + <version>1.1-SNAPSHOT</version> + <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.archiva</groupId> - <artifactId>archiva-converter</artifactId> - </dependency> - <dependency> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-digest</artifactId> - </dependency> - <dependency> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-component-api</artifactId> - </dependency> - <dependency> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-container-default</artifactId> + <artifactId>archiva-xml-tools</artifactId> </dependency> <dependency> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-cli</artifactId> + <groupId>org.apache.archiva</groupId> + <artifactId>archiva-converter</artifactId> </dependency> <dependency> - <groupId>commons-lang</groupId> - <artifactId>commons-lang</artifactId> + <groupId>com.google.code.cli-parser</groupId> + <artifactId>cli</artifactId> + <version>7</version> </dependency> <dependency> - <groupId>org.codehaus.plexus.registry</groupId> - <artifactId>plexus-registry-commons</artifactId> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + <version>1.5.0</version> + <scope>runtime</scope> </dependency> </dependencies> <build> <plugins> <plugin> - <artifactId>maven-assembly-plugin</artifactId> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>1.0.1</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <finalName>apache-archiva-cli-${project.version}</finalName> + <transformers> + <transformer implementation="org.apache.maven.plugins.shade.resource.ComponentsXmlResourceTransformer" /> + </transformers> + <artifactSet> + <excludes> + <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> <version>2.1</version> <configuration> - <descriptor>src/main/assembly/archiva-cli-assembly.xml</descriptor> <archive> <manifest> <mainClass>org.apache.maven.archiva.cli.ArchivaCli</mainClass> @@ -80,25 +99,6 @@ </archive> </configuration> </plugin> - <plugin> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-maven-plugin</artifactId> - <version>1.3.5</version> - <executions> - <execution> - <id>merge</id> - <goals> - <goal>merge-descriptors</goal> - </goals> - <configuration> - <descriptors> - <descriptor>${basedir}/src/main/resources/META-INF/plexus/components.xml</descriptor> - <descriptor>${project.build.directory}/generated-resources/plexus/META-INF/plexus/components.xml</descriptor> - </descriptors> - </configuration> - </execution> - </executions> - </plugin> </plugins> </build> </project> |