cvs commit: jakarta-log4j build.xml build.properties.sample

[email protected] 29 May 2002 11:50:17 -0000
Newsgroups gmane.comp.jakarta.log4j.cvs
Message-ID <[email protected]>
oburn       02/05/29 04:50:17

  Modified:    .        Tag: v1_2-branch build.xml build.properties.sample
  Log:
  Changes to support running Checkstyle.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.34.2.4  +2 -2      jakarta-log4j/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/build.xml,v
  retrieving revision 1.34.2.3
  retrieving revision 1.34.2.4
  diff -u -r1.34.2.3 -r1.34.2.4
  --- build.xml	28 May 2002 14:24:59 -0000	1.34.2.3
  +++ build.xml	29 May 2002 11:50:17 -0000	1.34.2.4
  @@ -251,7 +251,7 @@
     <!-- ================================================================= -->
     <target name="checkstyle" depends="init">
       <taskdef resource="checkstyletask.properties"
  -             classpath="build/lib/checkstyle-all-2.1.jar"/>
  +             classpath="${checkstyle.jar}"/>
   
       <!-- by default checkstyle supports the Sun coding standard. -->
       <checkstyle lcurlyMethod="nlow"
  @@ -270,7 +270,7 @@
     <target name="chainsaw" depends="build">
       <!-- Need to fork to avoid problems -->
       <java classname="org.apache.log4j.chainsaw.Main" fork="yes"
  -          classpath="${javac.dest}">
  +          classpath="${javac.dest};${ant.home}/lib/crimson.jar">
       </java>
     </target>
   
  
  
  
  1.2.2.1   +2 -1      jakarta-log4j/build.properties.sample
  
  Index: build.properties.sample
  ===================================================================
  RCS file: /home/cvs/jakarta-log4j/build.properties.sample,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- build.properties.sample	16 Apr 2002 14:37:32 -0000	1.2
  +++ build.properties.sample	29 May 2002 11:50:17 -0000	1.2.2.1
  @@ -18,5 +18,6 @@
   jmx.jar=/java/jmx/lib/jmxri.jar
   jmx-extra.jar=/java/jmx/lib/jmxtools.jar
   
  -
  +# Required to run Checkstyle. Available from http://checkstyle.sf.net
  +checkstyle.jar=/java/checkstyle-2.2/checkstyle-all-2.2.jar