diff options
author | Eric Hartmann <hartmann.eric@gmail.com> | 2014-07-02 18:34:23 +0200 |
---|---|---|
committer | Eric Hartmann <hartmann.eric@gmail.com> | 2014-07-02 18:34:23 +0200 |
commit | 04397dba36c6c6033391b036a8d2a3dde9093e57 (patch) | |
tree | c308c4fdb954465f19c7d105f4492fd9813a7125 | |
parent | a059a6a8513f219ef5f2bf133551e00aa183deb5 (diff) | |
download | sonarqube-04397dba36c6c6033391b036a8d2a3dde9093e57.tar.gz sonarqube-04397dba36c6c6033391b036a8d2a3dde9093e57.zip |
Move the removal of deployment of sonar-batch-maven-compat into release profile
-rw-r--r-- | sonar-batch-maven-compat/pom.xml | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/sonar-batch-maven-compat/pom.xml b/sonar-batch-maven-compat/pom.xml index 7554d5ecd9f..00aef88500b 100644 --- a/sonar-batch-maven-compat/pom.xml +++ b/sonar-batch-maven-compat/pom.xml @@ -34,12 +34,6 @@ <build> <plugins> <plugin> - <artifactId>maven-deploy-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> - </plugin> - <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> @@ -53,4 +47,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> |