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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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>server</artifactId>
  7. <version>6.4-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>sonar-db-dao</artifactId>
  10. <name>SonarQube :: DAO</name>
  11. <description>DAO layer for SonarQube</description>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.sonarsource.sonarqube</groupId>
  15. <artifactId>sonar-core</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.sonarsource.sonarqube</groupId>
  19. <artifactId>sonar-db-core</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.sonarsource.sonarqube</groupId>
  23. <artifactId>sonar-db-migration</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.google.code.findbugs</groupId>
  27. <artifactId>jsr305</artifactId>
  28. <scope>provided</scope>
  29. </dependency>
  30. <!-- tests -->
  31. <dependency>
  32. <groupId>junit</groupId>
  33. <artifactId>junit</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.assertj</groupId>
  38. <artifactId>assertj-core</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <!-- TODO to be removed -->
  43. <groupId>org.hamcrest</groupId>
  44. <artifactId>hamcrest-all</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.assertj</groupId>
  49. <artifactId>assertj-guava</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.mockito</groupId>
  54. <artifactId>mockito-core</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.tngtech.java</groupId>
  59. <artifactId>junit-dataprovider</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>${project.groupId}</groupId>
  64. <artifactId>sonar-testing-harness</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>${project.groupId}</groupId>
  69. <artifactId>sonar-db-core</artifactId>
  70. <version>${project.version}</version>
  71. <type>test-jar</type>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.dbunit</groupId>
  76. <artifactId>dbunit</artifactId>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.h2database</groupId>
  81. <artifactId>h2</artifactId>
  82. <scope>test</scope>
  83. </dependency>
  84. </dependencies>
  85. <build>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.apache.maven.plugins</groupId>
  89. <artifactId>maven-jar-plugin</artifactId>
  90. <executions>
  91. <execution>
  92. <goals>
  93. <goal>test-jar</goal>
  94. </goals>
  95. </execution>
  96. </executions>
  97. </plugin>
  98. </plugins>
  99. </build>
  100. <profiles>
  101. </profiles>
  102. </project>