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

1234567891011121314151617181920212223242526272829303132333435
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.codehaus.sonar</groupId>
  6. <artifactId>sonar</artifactId>
  7. <version>2.11</version>
  8. <relativePath>..</relativePath>
  9. </parent>
  10. <artifactId>sonar-colorizer</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Sonar :: Code Colorizer</name>
  13. <description>Code syntax highlighter</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>commons-io</groupId>
  17. <artifactId>commons-io</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.codehaus.sonar</groupId>
  21. <artifactId>sonar-channel</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. </dependencies>
  34. </project>