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 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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>4.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-duplications</artifactId>
  10. <name>SonarQube :: Duplications</name>
  11. <description>Detect duplicated code</description>
  12. <properties>
  13. <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.codehaus.sonar</groupId>
  18. <artifactId>sonar-channel</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.google.guava</groupId>
  22. <artifactId>guava</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.google.code.findbugs</groupId>
  26. <artifactId>jsr305</artifactId>
  27. <scope>provided</scope>
  28. </dependency>
  29. <!-- unit tests -->
  30. <dependency>
  31. <groupId>commons-io</groupId>
  32. <artifactId>commons-io</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>pmd</groupId>
  37. <artifactId>pmd</artifactId>
  38. <version>4.3</version>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>junit</groupId>
  43. <artifactId>junit</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.hamcrest</groupId>
  48. <artifactId>hamcrest-all</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mockito</groupId>
  53. <artifactId>mockito-all</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>ch.qos.logback</groupId>
  58. <artifactId>logback-classic</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.easytesting</groupId>
  63. <artifactId>fest-assert</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. </dependencies>
  67. </project>