Advertisement
Guest User

Maven Commons Logging Issue

a guest
Mar 21st, 2011
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.66 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2.   <modelVersion>4.0.0</modelVersion>
  3.   <groupId>com.incentica</groupId>
  4.   <artifactId>MavenJCLExclude</artifactId>
  5.   <version>0.0.1-SNAPSHOT</version>
  6.   <repositories>
  7.     <repository>
  8.         <id>no-commons-logging</id>
  9.         <name>No-commons-logging Maven Repository</name>
  10.         <layout>default</layout>
  11.         <url>http://no-commons-logging.zapto.org/mvn2</url>
  12.     </repository>
  13.   </repositories>
  14.   <dependencies>
  15.     <!-- use no-commons-logging -->
  16.     <dependency>
  17.         <groupId>commons-logging</groupId>
  18.         <artifactId>commons-logging</artifactId>
  19.         <version>99.0-does-not-exist</version>
  20.     </dependency>
  21.     <!-- no-commons-logging-api, if you need it -->
  22.     <dependency>
  23.         <groupId>commons-logging</groupId>
  24.         <artifactId>commons-logging-api</artifactId>
  25.         <version>99.0-does-not-exist</version>
  26.     </dependency>
  27.     <dependency>
  28.         <groupId>com.amazonaws</groupId>
  29.         <artifactId>aws-java-sdk</artifactId>
  30.         <version>1.1.8</version>
  31.         <type>jar</type>
  32.         <scope>compile</scope>
  33.     </dependency>
  34.     <dependency>
  35.         <groupId>org.slf4j</groupId>
  36.         <artifactId>slf4j-api</artifactId>
  37.         <version>1.6.1</version>
  38.         <type>jar</type>
  39.         <scope>compile</scope>
  40.     </dependency>
  41.     <dependency>
  42.         <groupId>org.slf4j</groupId>
  43.         <artifactId>jcl-over-slf4j</artifactId>
  44.         <version>1.6.1</version>
  45.         <type>jar</type>
  46.         <scope>compile</scope>
  47.     </dependency>
  48.   </dependencies>
  49. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement