/slf4j/pom.xml

http://github.com/dhanji/sitebricks · XML · 59 lines · 54 code · 4 blank · 1 comment · 0 complexity · afc52a5a6c96668a3f650b3b9bbf25ba MD5 · raw file

  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/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.google.sitebricks</groupId>
  5. <artifactId>sitebricks-parent</artifactId>
  6. <version>0.8.12-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>sitebricks-slf4j</artifactId>
  9. <name>Sitebricks :: SLF4J Module</name>
  10. <packaging>${packaging}</packaging>
  11. <description>Slf4j logging support for Guice applications (does not require sitebricks)</description>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.testng</groupId>
  15. <artifactId>testng</artifactId>
  16. <version>${org.testng.version}</version>
  17. <classifier>jdk15</classifier>
  18. <scope>test</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.google.inject</groupId>
  22. <artifactId>guice</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>ch.qos.logback</groupId>
  26. <artifactId>logback-classic</artifactId>
  27. <version>${ch.qos.logback.version}</version>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-compiler-plugin</artifactId>
  35. <configuration>
  36. <source>1.6</source>
  37. <target>1.6</target>
  38. </configuration>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. <!-- This should be removed when the googlecode repositories are migrated to the standard Nexus OSS repository infrastructure -->
  43. <distributionManagement>
  44. <snapshotRepository>
  45. <id>google-snapshots</id>
  46. <name>Sonatype OSS Nexus Snapshots</name>
  47. <url>https://oss.sonatype.org/content/repositories/google-snapshots</url>
  48. </snapshotRepository>
  49. <repository>
  50. <id>google-with-staging</id>
  51. <name>Nexus OSS Staging Repository</name>
  52. <url> https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  53. </repository>
  54. </distributionManagement>
  55. </project>