KT-3725 attach empty javadocs to all artifacts except compiler and runtime

This commit is contained in:
Leonid Shalupov
2013-07-08 02:25:04 +04:00
parent d0765d5e4a
commit abcf5616f7
4 changed files with 95 additions and 16 deletions
+19
View File
@@ -56,6 +56,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>attach-empty-javadoc</id>
<phase>prepare-package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<skipAttach>true</skipAttach>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>