Skip to content

Commit 0a5889e

Browse files
author
Niall Kegan Pemberton
committed
Remove ${basedir} from checkstyle and specify external links for javadocs
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@658885 13f79535-47bb-0310-9956-ffa450edef68
1 parent d911f5f commit 0a5889e

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

checkstyle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ limitations under the License.
2727
<module name="TreeWalker">
2828
<!-- Verify that EVERY source file has the appropriate license -->
2929
<module name="Header">
30-
<property name="headerFile" value="${basedir}/LICENSE-header.txt"/>
30+
<property name="headerFile" value="LICENSE-header.txt"/>
3131
</module>
3232

3333
<module name="OperatorWrap">

pom.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200
<plugin>
201201
<groupId>org.apache.maven.plugins</groupId>
202202
<artifactId>maven-changes-plugin</artifactId>
203-
<version>2.0-beta-3</version>
203+
<version>2.0</version>
204204
<configuration>
205205
<xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
206206
<issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
@@ -246,6 +246,17 @@
246246
<minSeverity>info</minSeverity>
247247
</configuration>
248248
</plugin>
249+
<plugin>
250+
<groupId>org.apache.maven.plugins</groupId>
251+
<artifactId>maven-javadoc-plugin</artifactId>
252+
<version>2.4</version>
253+
<configuration>
254+
<linksource>true</linksource>
255+
<links>
256+
<link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
257+
</links>
258+
</configuration>
259+
</plugin>
249260
</plugins>
250261
</reporting>
251262

0 commit comments

Comments
 (0)