diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-01-29 21:52:01 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-01-29 21:52:01 +0100 |
commit | 3b6484007142120f313a008a9c3069e9f4f98f86 (patch) | |
tree | 2e93fb8f3e408b1c5a0146719b0a2f7559e84618 | |
parent | 2884d7fba56cf60e138f03fe5baf07c86f478fa5 (diff) | |
download | sonarqube-3b6484007142120f313a008a9c3069e9f4f98f86.tar.gz sonarqube-3b6484007142120f313a008a9c3069e9f4f98f86.zip |
Do not deploy ITs to Maven repository
-rw-r--r-- | it/pom.xml | 18 |
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> |