[Clirr-devel] CVS: clirr/core pom.xml,1.8,1.9
Status: Alpha
Brought to you by:
lkuehne
|
From: Lars K. <lk...@us...> - 2013-05-29 20:36:50
|
Update of /cvsroot/clirr/clirr/core In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv12071 Modified Files: pom.xml Log Message: added javadoc plugin to build, this avoids a maven warning about "missing version specification" Index: pom.xml =================================================================== RCS file: /cvsroot/clirr/clirr/core/pom.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- pom.xml 11 May 2013 20:26:35 -0000 1.8 +++ pom.xml 29 May 2013 20:36:47 -0000 1.9 @@ -166,6 +166,27 @@ </plugin> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.9</version> + <executions> + <execution> + <goals> + <goal>jar</goal> + </goals> + <phase>package</phase> + </execution> + </executions> + <configuration> + <encoding>${project.build.sourceEncoding}</encoding> + <show>protected</show> + <excludePackageNames>*.internal</excludePackageNames> + <overview>${basedir}/src/java/net/sf/clirr/overview.html</overview> + <bottom></bottom> + </configuration> + </plugin> + + <plugin> <!-- - Build an additional artifact which is a jar that contains - all the clirr classes plus all classes from all runtime @@ -220,7 +241,9 @@ <configuration> <encoding>${project.build.sourceEncoding}</encoding> <show>protected</show> - <excludePackageNames>net.sf.clirr.core.internal</excludePackageNames> + <excludePackageNames>*.internal</excludePackageNames> + <overview>${basedir}/src/java/net/sf/clirr/overview.html</overview> + <bottom></bottom> </configuration> </plugin> |