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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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.sonarsource.sonarqube</groupId>
  6. <artifactId>sonarqube</artifactId>
  7. <version>6.0.1-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>junit</groupId>
  32. <artifactId>junit</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.assertj</groupId>
  37. <artifactId>assertj-core</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.hamcrest</groupId>
  42. <artifactId>hamcrest-all</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.mockito</groupId>
  47. <artifactId>mockito-core</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>commons-io</groupId>
  52. <artifactId>commons-io</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>pmd</groupId>
  57. <artifactId>pmd</artifactId>
  58. <version>4.3</version>
  59. <scope>test</scope>
  60. <exclusions>
  61. <exclusion>
  62. <groupId>xml-apis</groupId>
  63. <artifactId>xml-apis</artifactId>
  64. </exclusion>
  65. <exclusion>
  66. <groupId>xerces</groupId>
  67. <artifactId>xercesImpl</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. <dependency>
  72. <groupId>ch.qos.logback</groupId>
  73. <artifactId>logback-classic</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.apache.maven.plugins</groupId>
  81. <artifactId>maven-surefire-plugin</artifactId>
  82. <configuration>
  83. <skipTests>${skipBatchTests}</skipTests>
  84. </configuration>
  85. </plugin>
  86. </plugins>
  87. </build>
  88. </project>