aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api-deps
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-10-30 09:21:54 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-10-30 09:21:54 +0100
commit1f27cc9f4ad89e9a746d7060767550dc073c2313 (patch)
treea88cee2e14012b9aa7655c248276a90fa97b0ea5 /sonar-plugin-api-deps
parentd7d20c58c771f3be6cc44b37dc5b741443beca03 (diff)
parent9d0db7ccf1b038e4b17729499cedda8b167b2770 (diff)
downloadsonarqube-1f27cc9f4ad89e9a746d7060767550dc073c2313.tar.gz
sonarqube-1f27cc9f4ad89e9a746d7060767550dc073c2313.zip
Merge remote-tracking branch 'origin/branch-5.2'
Diffstat (limited to 'sonar-plugin-api-deps')
-rw-r--r--sonar-plugin-api-deps/pom.xml42
1 files changed, 16 insertions, 26 deletions
diff --git a/sonar-plugin-api-deps/pom.xml b/sonar-plugin-api-deps/pom.xml
index d4347e78963..44b1809cdba 100644
--- a/sonar-plugin-api-deps/pom.xml
+++ b/sonar-plugin-api-deps/pom.xml
@@ -152,32 +152,22 @@
</execution>
</executions>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <executions>
- <execution>
- <id>empty-javadoc-jar</id>
- <phase>package</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- <configuration>
- <classifier>javadoc</classifier>
- </configuration>
- </execution>
- <execution>
- <id>empty-sources-jar</id>
- <phase>package</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- <configuration>
- <classifier>sources</classifier>
- </configuration>
- </execution>
- </executions>
- </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>