aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/pom.xml
diff options
context:
space:
mode:
authorThomas Vérin <thomas.verin@sonarsource.com>2015-10-13 11:41:05 +0200
committerThomas Vérin <thomas.verin@sonarsource.com>2015-10-13 11:41:05 +0200
commitcf7a6b574f067e3d0ef4a4253d4422093366ba0e (patch)
tree4ad1a046fd811640e5637f63bc1d1e163b4bc735 /server/sonar-web/pom.xml
parent448f166e5f38e5018d5bfddea8eb8e1b3624e573 (diff)
downloadsonarqube-cf7a6b574f067e3d0ef4a4253d4422093366ba0e.tar.gz
sonarqube-cf7a6b574f067e3d0ef4a4253d4422093366ba0e.zip
Updated poms to generate empty javadoc and sources jars to comply with maven central
Diffstat (limited to 'server/sonar-web/pom.xml')
-rw-r--r--server/sonar-web/pom.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/server/sonar-web/pom.xml b/server/sonar-web/pom.xml
index eb7d79919e1..106cdbca1ef 100644
--- a/server/sonar-web/pom.xml
+++ b/server/sonar-web/pom.xml
@@ -180,6 +180,28 @@
</overlay>
</overlays>
</configuration>
+ <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>