aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server/pom.xml
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2011-07-08 10:48:38 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2011-07-08 10:48:38 +0200
commit005b7dc5dbac537e00a3c57a720e473e34dc37d3 (patch)
treee298c24c7f5ccd73ebf45e21053c44777a0f6e34 /sonar-server/pom.xml
parent3ff93809bc7928122d20afa69ac5c5641c6ca1e7 (diff)
downloadsonarqube-005b7dc5dbac537e00a3c57a720e473e34dc37d3.tar.gz
sonarqube-005b7dc5dbac537e00a3c57a720e473e34dc37d3.zip
Allow to deploy SNAPSHOT versions of sonar-application and sonar-server
Diffstat (limited to 'sonar-server/pom.xml')
-rw-r--r--sonar-server/pom.xml23
1 files changed, 16 insertions, 7 deletions
diff --git a/sonar-server/pom.xml b/sonar-server/pom.xml
index 5205ad689de..ab26e964bdf 100644
--- a/sonar-server/pom.xml
+++ b/sonar-server/pom.xml
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.codehaus.sonar</groupId>
@@ -327,12 +328,6 @@
</archive>
</configuration>
</plugin>
- <plugin>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
</plugins>
</build>
@@ -662,6 +657,20 @@
</plugins>
</build>
</profile>
+
+ <profile>
+ <id>release</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
</project> \ No newline at end of file