diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-26 11:35:47 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-29 11:03:32 +0200 |
commit | 81abdbffd8c1adcf0020f31606df1e0b90bd0890 (patch) | |
tree | d6fc6df5664853ea21b3308014145acaea5b8369 /pom.xml | |
parent | 35960287f74244d80373eaf3af47a14cefc7bcf8 (diff) | |
download | sonarqube-81abdbffd8c1adcf0020f31606df1e0b90bd0890.tar.gz sonarqube-81abdbffd8c1adcf0020f31606df1e0b90bd0890.zip |
First draft of integration tests
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -1,5 +1,6 @@ <?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/maven-v4_0_0.xsd"> +<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.codehaus.sonar</groupId> @@ -1134,7 +1135,6 @@ </dependency> - <!-- tomcat --> <dependency> <groupId>org.apache.tomcat.embed</groupId> @@ -1613,6 +1613,14 @@ <coveragePerTest>true</coveragePerTest> </properties> </profile> + + <profile> + <!-- integration tests --> + <id>it</id> + <modules> + <module>it</module> + </modules> + </profile> </profiles> </project> |