diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-12-07 11:09:50 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-12-14 12:11:51 +0100 |
commit | 460eee7ce980e719ee1de7873b8fd22bf40f3532 (patch) | |
tree | 7362f06932760a13446a64c151c899c2a23b904f /server/sonar-db-migration/pom.xml | |
parent | 6267731ef43726692de95b9eea1f18312f288d17 (diff) | |
download | sonarqube-460eee7ce980e719ee1de7873b8fd22bf40f3532.tar.gz sonarqube-460eee7ce980e719ee1de7873b8fd22bf40f3532.zip |
SONAR-8445 create maven module sonar-db-migration
Diffstat (limited to 'server/sonar-db-migration/pom.xml')
-rw-r--r-- | server/sonar-db-migration/pom.xml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/server/sonar-db-migration/pom.xml b/server/sonar-db-migration/pom.xml new file mode 100644 index 00000000000..9ece9a01e95 --- /dev/null +++ b/server/sonar-db-migration/pom.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.sonarsource.sonarqube</groupId> + <artifactId>server</artifactId> + <version>6.3-SNAPSHOT</version> + </parent> + + <artifactId>sonar-db-migration</artifactId> + + <name>SonarQube :: Database Migration</name> + <description>Create SonarQube schema</description> + + <dependencies> + + <!-- tests --> + + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>${skipServerTests}</skipTests> + </configuration> + </plugin> + </plugins> + </build> + + <profiles> + </profiles> +</project> |