You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.codehaus.sonar</groupId>
  7. <artifactId>sonar</artifactId>
  8. <version>2.8</version>
  9. <relativePath>..</relativePath>
  10. </parent>
  11. <artifactId>sonar-channel</artifactId>
  12. <name>Sonar :: Channel</name>
  13. <description>Code Channel</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>commons-io</groupId>
  17. <artifactId>commons-io</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.slf4j</groupId>
  21. <artifactId>slf4j-api</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>junit</groupId>
  25. <artifactId>junit</artifactId>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.hamcrest</groupId>
  30. <artifactId>hamcrest-all</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>ch.qos.logback</groupId>
  35. <artifactId>logback-classic</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. </dependencies>
  39. </project>