Revision: d11c8532ecf0
Branch: default
Author: lucio.benfante <
lucio.b...@gmail.com>
Date: Mon Mar 18 04:08:51 2013
Log: Added configuration to plugins parent for deploying sources and
javadocs
http://code.google.com/p/parancoe/source/detail?r=d11c8532ecf0
Modified:
/plugins/pom.xml
=======================================
--- /plugins/pom.xml Mon Mar 18 04:01:08 2013
+++ /plugins/pom.xml Mon Mar 18 04:08:51 2013
@@ -138,6 +138,46 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <artifactId>maven-source-plugin</artifactId>
+ <version>2.2.1</version>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <phase>deploy</phase>
+ <goals>
+ <goal>jar-no-fork</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.9</version>
+ <executions>
+ <execution>
+ <id>attach-javadocs</id>
+ <phase>deploy</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <!-- explicitly define maven-deploy-plugin after other to
force exec order -->
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>2.7</version>
+ <executions>
+ <execution>
+ <id>deploy</id>
+ <phase>deploy</phase>
+ <goals>
+ <goal>deploy</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
<repositories>