Author: rhillegas
Date: Mon Oct 18 18:51:21 2010
New Revision: 1023943
URL: http://svn.apache.org/viewvc?rev=1023943&view=rev
Log:
DERBY-2573: Move the checkin of the generated SQLState documentation to an earlier point in
the release-build.
Modified:
db/derby/code/trunk/build.xml
Modified: db/derby/code/trunk/build.xml
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/build.xml?rev=1023943&r1=1023942&r2=1023943&view=diff
==============================================================================
--- db/derby/code/trunk/build.xml (original)
+++ db/derby/code/trunk/build.xml Mon Oct 18 18:51:21 2010
@@ -1913,6 +1913,14 @@
<!-- Checkin the generated error documentation to the docs client -->
<target name="copyerrordocs">
+ <!-- Build the SQLState tables -->
+ <antcall target="all">
+ <param name="sane" value="true"/>
+ <param name="sanity" value="true"/>
+ <param name="sanity.name" value="sane"/>
+ <param name="deprecation" value="off"/>
+ </antcall>
+
<property name="refdir" value="${docs.root}/src/ref"/>
<copy file="${sqlstateTables}" todir="${refdir}"/>
@@ -1922,9 +1930,6 @@
<param name="fileName" value="${refdir}/rrefexcept71493.dita"/>
</antcall>
- <!-- Bring the docs client up to date again -->
- <antcall target="updatesvndoc"/>
-
</target>
<!--
@@ -2597,7 +2602,10 @@ you should not have to do this.
<param name="bumpID" value="false"/>
</antcall>
- <!-- we should already be squeeky clean, depends removed jars, javadoc, snapshot,
classes, and old release artifacts -->
+ <!-- copy the generated sqlstate tables to the docs client and check it in -->
+ <antcall target="copyerrordocs"/>
+
+ <!-- sync the clients to guarantee that we are up-to-date -->
<antcall target="updatesvnclients"/>
<antcall target="clobber"/>
@@ -2625,9 +2633,6 @@ you should not have to do this.
<param name="deprecation" value="off"/>
</antcall>
- <!-- copy the generated sqlstate tables to the docs client and check it in -->
- <antcall target="copyerrordocs"/>
-
<!-- build the docs now that the sqlstate tables are up to date -->
<antcall target="builduserdocs"/>
|