aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-ce/pom.xml
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2016-03-08 14:11:14 +0100
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>2016-03-21 16:44:03 +0100
commit5f351dc5d1c1c8cc24ef83eceb3e4bafa0e6c99e (patch)
tree64675dacaf1e1d373ec4ca4c69f0ff211a831baf /server/sonar-ce/pom.xml
parentca0b3a94ced3ee10f76c9465ccfa19767d62884d (diff)
downloadsonarqube-5f351dc5d1c1c8cc24ef83eceb3e4bafa0e6c99e.tar.gz
sonarqube-5f351dc5d1c1c8cc24ef83eceb3e4bafa0e6c99e.zip
SONAR-7134 add maven module sonar-ce
Diffstat (limited to 'server/sonar-ce/pom.xml')
-rw-r--r--server/sonar-ce/pom.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/server/sonar-ce/pom.xml b/server/sonar-ce/pom.xml
new file mode 100644
index 00000000000..5387b55a141
--- /dev/null
+++ b/server/sonar-ce/pom.xml
@@ -0,0 +1,40 @@
+<?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>5.5-SNAPSHOT</version>
+ <relativePath>..</relativePath>
+ </parent>
+ <artifactId>sonar-ce</artifactId>
+ <name>SonarQube :: Compute Engine</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.sonarsource.sonarqube</groupId>
+ <artifactId>sonar-server</artifactId>
+ <version>${project.version}</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skipTests>${skipServerTests}</skipTests>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>