diff options
author | Brett Porter <brett@apache.org> | 2009-03-14 02:33:57 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2009-03-14 02:33:57 +0000 |
commit | 537ff689e7e39ce7ca4d9f0b94abcece5ee7c569 (patch) | |
tree | d905efd2f35bab56d08c436288943c77820b63e2 /archiva-cli/pom.xml | |
parent | b24700028788de56ab0367f1c2379f0b695e4c0f (diff) | |
download | archiva-537ff689e7e39ce7ca4d9f0b94abcece5ee7c569.tar.gz archiva-537ff689e7e39ce7ca4d9f0b94abcece5ee7c569.zip |
[MRM-1140] centralise logging through slf4j
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@753590 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-cli/pom.xml')
-rw-r--r-- | archiva-cli/pom.xml | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/archiva-cli/pom.xml b/archiva-cli/pom.xml index 70f20a3ce..a18f2ff8a 100644 --- a/archiva-cli/pom.xml +++ b/archiva-cli/pom.xml @@ -56,17 +56,18 @@ <version>7</version> </dependency> <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> - <scope>runtime</scope> - </dependency> - <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-spring</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl104-over-slf4j</artifactId> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + <scope>compile</scope> </dependency> </dependencies> <build> @@ -74,7 +75,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> - <version>1.0.1</version> + <version>1.2</version> <executions> <execution> <phase>package</phase> @@ -111,6 +112,16 @@ </archive> </configuration> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <configuration> + <executable>java</executable> + <mainClass>org.apache.maven.archiva.cli.ArchivaCli</mainClass> + <arguments> + </arguments> + </configuration> + </plugin> </plugins> </build> </project> |