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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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.3-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-testing-harness</artifactId>
  10. <packaging>jar</packaging>
  11. <name>Sonar :: Testing Harness</name>
  12. <build>
  13. <plugins>
  14. <plugin>
  15. <artifactId>maven-deploy-plugin</artifactId>
  16. <configuration>
  17. <skip>false</skip>
  18. </configuration>
  19. </plugin>
  20. </plugins>
  21. </build>
  22. <dependencies>
  23. <dependency>
  24. <groupId>junit</groupId>
  25. <artifactId>junit</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.mockito</groupId>
  29. <artifactId>mockito-all</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.hamcrest</groupId>
  33. <artifactId>hamcrest-all</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>xmlunit</groupId>
  37. <artifactId>xmlunit</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>ch.qos.logback</groupId>
  41. <artifactId>logback-classic</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.codehaus.sonar</groupId>
  45. <artifactId>sonar-plugin-api</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.dbunit</groupId>
  50. <artifactId>dbunit</artifactId>
  51. <exclusions>
  52. <!-- removing commons lang 2.1 and xerces-->
  53. <exclusion>
  54. <groupId>commons-lang</groupId>
  55. <artifactId>commons-lang</artifactId>
  56. </exclusion>
  57. <exclusion>
  58. <groupId>xerces</groupId>
  59. <artifactId>xmlParserAPIs</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <groupId>xerces</groupId>
  63. <artifactId>xercesImpl</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>hsqldb</groupId>
  69. <artifactId>hsqldb</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.codehaus.sonar</groupId>
  73. <artifactId>sonar-plugin-api</artifactId>
  74. <version>${project.version}</version>
  75. <scope>compile</scope>
  76. <type>test-jar</type>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.codehaus.sonar</groupId>
  80. <artifactId>sonar-core</artifactId>
  81. <version>${project.version}</version>
  82. <scope>compile</scope>
  83. <type>test-jar</type>
  84. </dependency>
  85. </dependencies>
  86. </project>