aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-10-14 10:51:33 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-10-14 10:51:33 +0200
commite4012ed25fc3f6f7390d57484038315a804d3a24 (patch)
tree8b35cadd79f956234ab4de4480a9b931cb8f3a54
parent286ebb7201cf0894aba99f58c52426f42675daf9 (diff)
downloadsonarqube-e4012ed25fc3f6f7390d57484038315a804d3a24.tar.gz
sonarqube-e4012ed25fc3f6f7390d57484038315a804d3a24.zip
Prevent integration test modules to be deployed on central repository
-rw-r--r--it/pom.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/it/pom.xml b/it/pom.xml
index 3827d74ab41..11aac989b0f 100644
--- a/it/pom.xml
+++ b/it/pom.xml
@@ -19,4 +19,19 @@
<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>