diff options
author | Brett Porter <brett@apache.org> | 2014-07-30 12:03:33 +1000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2014-07-30 12:05:02 +1000 |
commit | 732531ebef675b45f964447cf44f310d67298f2d (patch) | |
tree | 96b086093de5e3a05ec6febc5fffbeb7d8d63602 /archiva-cli/pom.xml | |
parent | 0f2467eb86f26393b82ee7fd753cba6468c2c008 (diff) | |
download | archiva-732531ebef675b45f964447cf44f310d67298f2d.tar.gz archiva-732531ebef675b45f964447cf44f310d67298f2d.zip |
ensure archiva-cli is able to run
clean up the dependencies used and add some missing configuration form shade
Diffstat (limited to 'archiva-cli/pom.xml')
-rw-r--r-- | archiva-cli/pom.xml | 36 |
1 files changed, 13 insertions, 23 deletions
diff --git a/archiva-cli/pom.xml b/archiva-cli/pom.xml index dd603b8ae..f47154902 100644 --- a/archiva-cli/pom.xml +++ b/archiva-cli/pom.xml @@ -34,16 +34,15 @@ </dependency> <dependency> <groupId>org.apache.archiva</groupId> - <artifactId>archiva-metadata-consumer</artifactId> - <scope>runtime</scope> + <artifactId>archiva-repository-admin-api</artifactId> </dependency> <dependency> <groupId>org.apache.archiva</groupId> - <artifactId>archiva-configuration</artifactId> + <artifactId>archiva-consumer-api</artifactId> </dependency> <dependency> <groupId>org.apache.archiva</groupId> - <artifactId>archiva-consumer-api</artifactId> + <artifactId>archiva-plexus-bridge</artifactId> </dependency> <dependency> <groupId>org.apache.archiva</groupId> @@ -60,47 +59,38 @@ </exclusions> </dependency> <dependency> - <groupId>org.apache.maven.wagon</groupId> - <artifactId>wagon-file</artifactId> - </dependency> - <dependency> <groupId>com.google.code.cli-parser</groupId> <artifactId>cli</artifactId> <version>7</version> </dependency> <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-artifact-manager</artifactId> - </dependency> - <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> + <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-jcl</artifactId> - <scope>compile</scope> + <artifactId>log4j-slf4j-impl</artifactId> </dependency> + <!-- Consumers to include --> + <!-- + This will require some additional configuration now to point to an appropriate metadata repository storage, which is not in the CLI yet <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-1.2-api</artifactId> - <scope>compile</scope> + <groupId>org.apache.archiva</groupId> + <artifactId>archiva-metadata-consumer</artifactId> + <scope>runtime</scope> </dependency> + --> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> - <version>1.2.2</version> + <version>2.3</version> <executions> <execution> <phase>package</phase> |