diff options
Diffstat (limited to 'it/pom.xml')
-rw-r--r-- | it/pom.xml | 37 |
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> |