diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2011-08-08 10:31:29 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2011-08-08 10:31:29 +0200 |
commit | f140b7f8ca308188b367449e11cf1ee94f8a2c9b (patch) | |
tree | a5c1c1a3b52655d0325bdd1559da797a8751c252 /sonar-batch-maven-compat | |
parent | 4eb254b7e2871f5c1c8f986ef33528952924da13 (diff) | |
download | sonarqube-f140b7f8ca308188b367449e11cf1ee94f8a2c9b.tar.gz sonarqube-f140b7f8ca308188b367449e11cf1ee94f8a2c9b.zip |
Fix required constraints of Nexus staging
Diffstat (limited to 'sonar-batch-maven-compat')
-rw-r--r-- | sonar-batch-maven-compat/pom.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sonar-batch-maven-compat/pom.xml b/sonar-batch-maven-compat/pom.xml index fc88d926c81..47f0b515f1b 100644 --- a/sonar-batch-maven-compat/pom.xml +++ b/sonar-batch-maven-compat/pom.xml @@ -43,4 +43,20 @@ </plugin> </plugins> </build> + + <profiles> + <profile> + <id>release</id> + <build> + <plugins> + <plugin> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project> |