Author: niallp
Date: Wed May 21 14:37:48 2008
New Revision: 658885
URL: http://svn.apache.org/viewvc?rev=658885&view=rev
Log:
Remove ${basedir} from checkstyle and specify external links for javadocs
Modified:
commons/proper/codec/trunk/checkstyle.xml
commons/proper/codec/trunk/pom.xml
Modified: commons/proper/codec/trunk/checkstyle.xml
URL:
http://svn.apache.org/viewvc/commons/proper/codec/trunk/checkstyle.xml?rev=658885&r1=658884&r2=658885&view=diff
==============================================================================
--- commons/proper/codec/trunk/checkstyle.xml (original)
+++ commons/proper/codec/trunk/checkstyle.xml Wed May 21 14:37:48 2008
@@ -27,7 +27,7 @@
<module name="TreeWalker">
<!-- Verify that EVERY source file has the appropriate license -->
<module name="Header">
- <property name="headerFile" value="${basedir}/LICENSE-header.txt"/>
+ <property name="headerFile" value="LICENSE-header.txt"/>
</module>
<module name="OperatorWrap">
Modified: commons/proper/codec/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/codec/trunk/pom.xml?rev=658885&r1=658884&r2=658885&view=diff
==============================================================================
--- commons/proper/codec/trunk/pom.xml (original)
+++ commons/proper/codec/trunk/pom.xml Wed May 21 14:37:48 2008
@@ -200,7 +200,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
- <version>2.0-beta-3</version>
+ <version>2.0</version>
<configuration>
<xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
<issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
@@ -246,6 +246,17 @@
<minSeverity>info</minSeverity>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.4</version>
+ <configuration>
+ <linksource>true</linksource>
+ <links>
+ <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
+ </links>
+ </configuration>
+ </plugin>
</plugins>
</reporting>