You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by fu...@apache.org on 2005/11/18 00:24:37 UTC

svn commit: r345359 - /db/derby/code/trunk/build.xml

Author: fuzzylogic
Date: Thu Nov 17 15:24:33 2005
New Revision: 345359

URL: http://svn.apache.org/viewcvs?rev=345359&view=rev
Log:
Make publishedapi and engine targets depend on initjars so that the changenumber
is properly set if the target is called independently of the 'javadoc' target.

Modified:
    db/derby/code/trunk/build.xml

Modified: db/derby/code/trunk/build.xml
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/build.xml?rev=345359&r1=345358&r2=345359&view=diff
==============================================================================
--- db/derby/code/trunk/build.xml (original)
+++ db/derby/code/trunk/build.xml Thu Nov 17 15:24:33 2005
@@ -519,7 +519,7 @@
 
   <target name="javadoc" depends="init,initjars,publishedapi,derbydocs,toolsdocs,grammardocs"/>
 
-  <target name="publishedapi">
+  <target name="publishedapi" depends="initjars">
  
     <tstamp>
       <format 
@@ -576,7 +576,7 @@
 
   </target>
 
-  <target name="derbydocs">
+  <target name="derbydocs" depends="initjars">
 
     <delete dir="${out.javadoc.dir}/engine"/>
     <mkdir dir="${out.javadoc.dir}/engine"/>