Properly configure javadoc in our POM build. The POM is now approaching the

line count of the build.xml file, but I suppose that's just because XML is
absurdly verbose (and Maven annoyingly chose to do things like
<quiet>true</quiet> instead of a quiet="true" attribute). I wonder if there's a
Maven plugin that allows you to specify your pom.xml in YAML or some less
verbose format and which automatically converts it to XML. That'd probably cut
the line count by 2/3.


git-svn-id: https://samskivert.googlecode.com/svn/trunk@2853 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
samskivert
2010-09-08 19:04:33 +00:00
parent 579d706075
commit e68daada41
3 changed files with 24 additions and 17 deletions
+13
View File
@@ -132,6 +132,19 @@
</additionalClasspathElements>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<quiet>true</quiet>
<excludePackageNames>com.samskivert.velocity:com.samskivert.xml</excludePackageNames>
<links>
<link>http://download.oracle.com/javase/6/docs/api/</link>
<link>http://java.sun.com/products/javamail/javadocs/</link>
<link>http://download.oracle.com/javaee/1.2.1/api/</link>
</links>
</configuration>
</plugin>
</plugins>
</build>
</project>