You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by cu...@apache.org on 2010/08/04 01:09:42 UTC

svn commit: r982063 - in /avro/trunk: CHANGES.txt lang/java/build.xml

Author: cutting
Date: Tue Aug  3 23:09:42 2010
New Revision: 982063

URL: http://svn.apache.org/viewvc?rev=982063&view=rev
Log:
AVRO-604. Java: Fix missing build dependency for checkstyle target.  Contributed by Patrick Wendell.

Modified:
    avro/trunk/CHANGES.txt
    avro/trunk/lang/java/build.xml

Modified: avro/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/avro/trunk/CHANGES.txt?rev=982063&r1=982062&r2=982063&view=diff
==============================================================================
--- avro/trunk/CHANGES.txt (original)
+++ avro/trunk/CHANGES.txt Tue Aug  3 23:09:42 2010
@@ -107,6 +107,9 @@ Avro 1.4.0 (unreleased)
 
     AVRO-573. Java: Fix various bugs with undeclared RPC exceptions. (cutting)
 
+    AVRO-604. Java: Fix missing build dependency for checkstyle target.
+    (Patrick Wendell via cutting)
+
 Avro 1.3.3 (7 June 2010)
 
   IMPROVEMENTS

Modified: avro/trunk/lang/java/build.xml
URL: http://svn.apache.org/viewvc/avro/trunk/lang/java/build.xml?rev=982063&r1=982062&r2=982063&view=diff
==============================================================================
--- avro/trunk/lang/java/build.xml (original)
+++ avro/trunk/lang/java/build.xml Tue Aug  3 23:09:42 2010
@@ -266,7 +266,7 @@
     </jar>
   </target>
   
-  <target name="checkstyle-java" depends="compile">
+  <target name="checkstyle-java" depends="compile, ivy-retrieve-test">
     <taskdef resource="checkstyletask.properties">
       <classpath refid="test.java.classpath" />
     </taskdef>