You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2009/02/15 16:24:29 UTC

svn commit: r744677 - in /incubator/click/trunk/click: README.txt build/build.xml

Author: sabob
Date: Sun Feb 15 15:24:28 2009
New Revision: 744677

URL: http://svn.apache.org/viewvc?rev=744677&view=rev
Log:
moved checkstyle taskdef inside the checkstyle target.

Modified:
    incubator/click/trunk/click/README.txt
    incubator/click/trunk/click/build/build.xml

Modified: incubator/click/trunk/click/README.txt
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/README.txt?rev=744677&r1=744676&r2=744677&view=diff
==============================================================================
--- incubator/click/trunk/click/README.txt (original)
+++ incubator/click/trunk/click/README.txt Sun Feb 15 15:24:28 2009
@@ -82,15 +82,19 @@
 
     ant get-deps
 
-To build a new distribution use run the command:
+To run all tests execute the command:
+
+    ant test-all
+
+To build a new distribution run:
 
     ant build-distribution
 
-To build the core library, click-x.x.x.jar, run the command:
+To build the core library, click-x.x.x.jar, run:
 
     ant build-framework
 
-To build the extras library, click-extras.x.x.x.jar, run the command:
+To build the extras library, click-extras.x.x.x.jar, run:
 
     ant build-extras
 

Modified: incubator/click/trunk/click/build/build.xml
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/build/build.xml?rev=744677&r1=744676&r2=744677&view=diff
==============================================================================
--- incubator/click/trunk/click/build/build.xml (original)
+++ incubator/click/trunk/click/build/build.xml Sun Feb 15 15:24:28 2009
@@ -68,10 +68,6 @@
    <taskdef name="package" 
    	        classname="org.apache.click.tools.devtasks.PackageTask"
    	        classpath="lib/click-dev-tasks-1.0.jar"/>
-            
-   <taskdef resource="checkstyletask.properties"
-            classpath="lib/${jar.checkstyle}"/>
-
 
     <!--
      Macro Definitions
@@ -489,6 +485,10 @@
   	        <or><isfalse value="${isJarAvail}"/></or>
   	     </condition>
       </fail>
+
+      <taskdef resource="checkstyletask.properties"
+          classpath="lib/${jar.checkstyle}"/>
+
       <checkstyle config="build/checkstyle-checks.xml">
          <fileset dir="framework/src/org/apache/click/" includes="**/*.java"/>
          <fileset dir="extras/src" includes="**/*.java"/>