Author: tchemit Date: 2010-01-23 18:23:27 +0100 (Sat, 23 Jan 2010) New Revision: 105 Modified: trunk/jredmine-client/pom.xml Log: expose test-jar and test-sources as we expose tests classifier Modified: trunk/jredmine-client/pom.xml =================================================================== --- trunk/jredmine-client/pom.xml 2010-01-23 17:07:16 UTC (rev 104) +++ trunk/jredmine-client/pom.xml 2010-01-23 17:23:27 UTC (rev 105) @@ -125,6 +125,34 @@ <build> <plugins> + <!-- always compute tests-sources jar --> + <plugin> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-sources</id> + <goals> + <!--<goal>jar</goal>--> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + + <!-- always compute test-javadoc jar --> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <id>attach-javadocs</id> + <goals> + <!--<goal>jar</goal>--> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + <!-- launch in a release the assembly, but not attach it to project --> <plugin>
participants (1)
-
tchemit@users.nuiton.org