dion        2002/06/05 22:25:43

  Modified:    src/templates/build/plugins/core build.xml
  Log:
  Use new sourceDirectory property - checkstyle is still broken tho
  
  Revision  Changes    Path
  1.13      +3 -6      jakarta-turbine-maven/src/templates/build/plugins/core/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-maven/src/templates/build/plugins/core/build.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- build.xml 5 Jun 2002 00:50:24 -0000       1.12
  +++ build.xml 6 Jun 2002 05:25:43 -0000       1.13
  @@ -503,11 +503,6 @@
   
     <target name="do-check-source" if="maven.sourcesPresent">
   
  -    <filesetfrompath pathid="maven.src.set"
  -        filesetid="maven.sourceDirectories.fileset"
  -        includes="${maven.checkstyle.includes}"
  -        excludes="${maven.checkstyle.excludes}"/>
  -        
       <checkstyle
         lcurlyType="${maven.checkstyle.lcurly.type}"
         lcurlyMethod="${maven.checkstyle.lcurly.method}"
  @@ -546,7 +541,9 @@
         ignorePublicInInterface="${maven.checkstyle.ignore.public.in.interface}"
         failOnViolation="${maven.checkstyle.fail.on.violation}"
         cacheFile="${maven.checkstyle.cache.file}" >
  -      <fileset refid="maven.sourceDirectories.fileset" />
  +      <fileset dir="${maven.build.sourceDirectory}"
  +        includes="${maven.checkstyle.includes}"
  +        excludes="${maven.checkstyle.excludes}"/>
         <formatter type="xml" toFile="${maven.build.dir}/checkstyle-raw-report.xml"/>
         <formatter type="plain" 
toFile="${maven.build.dir}/checkstyle-raw-report.txt"/>
       </checkstyle>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to