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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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>7.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.code.findbugs</groupId>
  22. <artifactId>jsr305</artifactId>
  23. <scope>provided</scope>
  24. </dependency>
  25. <!-- unit tests -->
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.assertj</groupId>
  33. <artifactId>assertj-core</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mockito</groupId>
  38. <artifactId>mockito-core</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>commons-io</groupId>
  43. <artifactId>commons-io</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>pmd</groupId>
  48. <artifactId>pmd</artifactId>
  49. <version>4.3</version>
  50. <scope>test</scope>
  51. <exclusions>
  52. <exclusion>
  53. <groupId>xml-apis</groupId>
  54. <artifactId>xml-apis</artifactId>
  55. </exclusion>
  56. <exclusion>
  57. <groupId>xerces</groupId>
  58. <artifactId>xercesImpl</artifactId>
  59. </exclusion>
  60. </exclusions>
  61. </dependency>
  62. <dependency>
  63. <groupId>ch.qos.logback</groupId>
  64. <artifactId>logback-classic</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. </dependencies>
  68. </project>