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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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-migration</artifactId>
  10. <name>SonarQube :: Database Migration</name>
  11. <description>Create SonarQube schema</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>com.google.code.findbugs</groupId>
  23. <artifactId>jsr305</artifactId>
  24. <scope>provided</scope>
  25. </dependency>
  26. <!-- tests -->
  27. <dependency>
  28. <groupId>junit</groupId>
  29. <artifactId>junit</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.assertj</groupId>
  34. <artifactId>assertj-core</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.mockito</groupId>
  39. <artifactId>mockito-core</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.tngtech.java</groupId>
  44. <artifactId>junit-dataprovider</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>${project.groupId}</groupId>
  49. <artifactId>sonar-testing-harness</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>${project.groupId}</groupId>
  54. <artifactId>sonar-db-core</artifactId>
  55. <version>${project.version}</version>
  56. <type>test-jar</type>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.dbunit</groupId>
  61. <artifactId>dbunit</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.h2database</groupId>
  66. <artifactId>h2</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. </dependencies>
  70. </project>