mirror of https://github.com/apache/maven.git
PR: MNG-829
Submitted by: Johnny R. Ruiz III use File for basedir aligned parameter git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@321327 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0b6e19dd59
commit
286075ab38
|
@ -110,7 +110,7 @@ public class CheckstyleReport
|
|||
*
|
||||
* @parameter expression="${basedir}/LICENSE.txt"
|
||||
*/
|
||||
private String headerFile;
|
||||
private File headerFile;
|
||||
|
||||
/**
|
||||
* Specifies the cache file used to speed up Checkstyle on successive runs.
|
||||
|
@ -442,7 +442,7 @@ public class CheckstyleReport
|
|||
|
||||
if ( headerFile != null )
|
||||
{
|
||||
p.setProperty( "checkstyle.header.file", headerFile );
|
||||
p.setProperty( "checkstyle.header.file", headerFile.getAbsolutePath() );
|
||||
}
|
||||
|
||||
if ( cacheFile != null )
|
||||
|
|
Loading…
Reference in New Issue