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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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>7.1-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. <groupId>org.assertj</groupId>
  43. <artifactId>assertj-guava</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.mockito</groupId>
  48. <artifactId>mockito-core</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.tngtech.java</groupId>
  53. <artifactId>junit-dataprovider</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>${project.groupId}</groupId>
  58. <artifactId>sonar-testing-harness</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>${project.groupId}</groupId>
  63. <artifactId>sonar-db-core</artifactId>
  64. <version>${project.version}</version>
  65. <type>test-jar</type>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.dbunit</groupId>
  70. <artifactId>dbunit</artifactId>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.h2database</groupId>
  75. <artifactId>h2</artifactId>
  76. <scope>test</scope>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-jar-plugin</artifactId>
  84. <executions>
  85. <execution>
  86. <goals>
  87. <goal>test-jar</goal>
  88. </goals>
  89. <configuration>
  90. <excludes>
  91. <exclude>logback-test.xml</exclude>
  92. </excludes>
  93. </configuration>
  94. </execution>
  95. </executions>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. <profiles>
  100. </profiles>
  101. </project>