aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2016-01-29 21:52:01 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2016-01-29 21:52:01 +0100
commit3b6484007142120f313a008a9c3069e9f4f98f86 (patch)
tree2e93fb8f3e408b1c5a0146719b0a2f7559e84618
parent2884d7fba56cf60e138f03fe5baf07c86f478fa5 (diff)
downloadsonarqube-3b6484007142120f313a008a9c3069e9f4f98f86.tar.gz
sonarqube-3b6484007142120f313a008a9c3069e9f4f98f86.zip
Do not deploy ITs to Maven repository
-rw-r--r--it/pom.xml18
1 files changed, 3 insertions, 15 deletions
diff --git a/it/pom.xml b/it/pom.xml
index 97ff9b4ed87..856f24404ed 100644
--- a/it/pom.xml
+++ b/it/pom.xml
@@ -13,24 +13,12 @@
<name>SonarQube Integration Tests</name>
<packaging>pom</packaging>
+ <properties>
+ <maven.deploy.skip>true</maven.deploy.skip>
+ </properties>
<modules>
<module>it-plugins</module>
<module>it-tests</module>
</modules>
- <profiles>
- <profile>
- <id>release</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
</project>