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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.3-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</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>${project.groupId}</groupId>
  29. <artifactId>sonar-testing-harness</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>${project.groupId}</groupId>
  34. <artifactId>sonar-db</artifactId>
  35. <version>${project.version}</version>
  36. <type>test-jar</type>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.dbunit</groupId>
  41. <artifactId>dbunit</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.h2database</groupId>
  46. <artifactId>h2</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-surefire-plugin</artifactId>
  55. <configuration>
  56. <skipTests>${skipServerTests}</skipTests>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. <profiles>
  62. </profiles>
  63. </project>