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.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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>5.2-SNAPSHOT</version>
  8. <relativePath>..</relativePath>
  9. </parent>
  10. <artifactId>sonar-colorizer</artifactId>
  11. <name>SonarQube :: Code Colorizer</name>
  12. <description>Code syntax highlighter</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.codehaus.sonar</groupId>
  16. <artifactId>sonar-channel</artifactId>
  17. <exclusions>
  18. <exclusion>
  19. <groupId>commons-io</groupId>
  20. <artifactId>commons-io</artifactId>
  21. </exclusion>
  22. </exclusions>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.google.code.findbugs</groupId>
  26. <artifactId>jsr305</artifactId>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.codehaus.sonar</groupId>
  31. <artifactId>sonar-testing-harness</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. </dependencies>
  35. </project>