aboutsummaryrefslogtreecommitdiffstats
path: root/it/pom.xml
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-06-26 11:35:47 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-06-29 11:03:32 +0200
commit81abdbffd8c1adcf0020f31606df1e0b90bd0890 (patch)
treed6fc6df5664853ea21b3308014145acaea5b8369 /it/pom.xml
parent35960287f74244d80373eaf3af47a14cefc7bcf8 (diff)
downloadsonarqube-81abdbffd8c1adcf0020f31606df1e0b90bd0890.tar.gz
sonarqube-81abdbffd8c1adcf0020f31606df1e0b90bd0890.zip
First draft of integration tests
Diffstat (limited to 'it/pom.xml')
-rw-r--r--it/pom.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/it/pom.xml b/it/pom.xml
new file mode 100644
index 00000000000..cbb65650c6b
--- /dev/null
+++ b/it/pom.xml
@@ -0,0 +1,37 @@
+<?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.codehaus.sonar</groupId>
+ <artifactId>sonar</artifactId>
+ <version>5.2-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.sonarsource.it</groupId>
+ <artifactId>it-parent</artifactId>
+ <version>5.2-SNAPSHOT</version>
+ <name>SonarQube Integration Tests</name>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>plugins</module>
+ <module>tests</module>
+ </modules>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.codehaus.sonar.plugins</groupId>
+ <artifactId>sonar-xoo-plugin</artifactId>
+ <version>${pom.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.sonar</groupId>
+ <artifactId>sonar-application</artifactId>
+ <version>${pom.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+</project>