You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2009/09/28 17:29:48 UTC

svn commit: r819587 - /incubator/uima/sandbox/trunk/SandboxDocs/sandbox_build.xml

Author: schor
Date: Mon Sep 28 15:29:43 2009
New Revision: 819587

URL: http://svn.apache.org/viewvc?rev=819587&view=rev
Log:
UIMA-1546 renaming improvement of assembly generation - rename target/bin to target/assembly-bin

Modified:
    incubator/uima/sandbox/trunk/SandboxDocs/sandbox_build.xml

Modified: incubator/uima/sandbox/trunk/SandboxDocs/sandbox_build.xml
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/SandboxDocs/sandbox_build.xml?rev=819587&r1=819586&r2=819587&view=diff
==============================================================================
--- incubator/uima/sandbox/trunk/SandboxDocs/sandbox_build.xml (original)
+++ incubator/uima/sandbox/trunk/SandboxDocs/sandbox_build.xml Mon Sep 28 15:29:43 2009
@@ -30,7 +30,7 @@
   <property name="target.dir" value="${basedir}/target"/>
   <property name="styles.dir" value="${basedir}/../SandboxDocs/src/styles"/>
   <property name="skip.html-chunked" value="true"/>	
-  <property name="doc.target.dir" value="${basedir}/target/bin/${artifactId}/docs"/>
+  <property name="doc.target.dir" value="${basedir}/target/assembly-bin/${artifactId}/docs"/>
   
   <import file="${basedir}/../uima-docbook-tool/build/build-docbook.xml"/>  
   
@@ -53,13 +53,13 @@
                copy the some files.  The form below seems to work better. 
                Don't know why, but I think there's some interaction with SVN. -->
     <copy todir="${basedir}/docs">
-      <fileset dir="${basedir}/target/bin/${artifactId}/docs"/>
+      <fileset dir="${doc.target.dir}"/>
     </copy>
     
     <!-- copy to pear -->
     <!-- pear convention is that the dir is named doc, not docs -->
     <copy todir="${basedir}/target/pearPackaging/doc">
-      <fileset dir="${basedir}/target/bin/${artifactId}/docs" includes="**"/>
+      <fileset dir="${doc.target.dir}"/>
     </copy>
     
 	</target>