aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-ce-api/pom.xml
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2017-03-31 11:49:35 +0200
committerEric Hartmann <hartmann.eric@gmail.Com>2017-04-27 09:23:18 +0200
commit588904e9c4460e485749effc85663e4594e16c79 (patch)
treefbfa7a6a342432012b67e730a8bdd24e840ab3d8 /server/sonar-ce-api/pom.xml
parent57df359eb35751a0b2c24bfbf46e43d5a58a55ab (diff)
downloadsonarqube-588904e9c4460e485749effc85663e4594e16c79.tar.gz
sonarqube-588904e9c4460e485749effc85663e4594e16c79.zip
SONAR-9057 add module sonar-ce-api
this module provides code shared by sonar-web and sonar-ce
Diffstat (limited to 'server/sonar-ce-api/pom.xml')
-rw-r--r--server/sonar-ce-api/pom.xml62
1 files changed, 62 insertions, 0 deletions
diff --git a/server/sonar-ce-api/pom.xml b/server/sonar-ce-api/pom.xml
new file mode 100644
index 00000000000..c492649ca11
--- /dev/null
+++ b/server/sonar-ce-api/pom.xml
@@ -0,0 +1,62 @@
+<?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.4-SNAPSHOT</version>
+ <relativePath>..</relativePath>
+ </parent>
+ <artifactId>sonar-ce-api</artifactId>
+ <name>SonarQube :: Compute Engine API</name>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.picocontainer</groupId>
+ <artifactId>picocontainer</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.sonarsource.sonarqube</groupId>
+ <artifactId>sonar-plugin-api</artifactId>
+ </dependency>
+
+ <!-- unit tests -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.tngtech.java</groupId>
+ <artifactId>junit-dataprovider</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.assertj</groupId>
+ <artifactId>assertj-core</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-core</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>sonar-db-testing</artifactId>
+ <type>pom</type>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+</project>