You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by si...@apache.org on 2010/11/01 16:03:52 UTC

svn commit: r1029694 - in /incubator/river/jtsk/trunk: build.xml common.xml qa/build.xml

Author: sijskes
Date: Mon Nov  1 15:03:51 2010
New Revision: 1029694

URL: http://svn.apache.org/viewvc?rev=1029694&view=rev
Log:
variableified extlibs

Modified:
    incubator/river/jtsk/trunk/build.xml
    incubator/river/jtsk/trunk/common.xml
    incubator/river/jtsk/trunk/qa/build.xml

Modified: incubator/river/jtsk/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/build.xml?rev=1029694&r1=1029693&r2=1029694&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/build.xml (original)
+++ incubator/river/jtsk/trunk/build.xml Mon Nov  1 15:03:51 2010
@@ -234,7 +234,7 @@
             <pathelement path="${src.dir}"/>
         </path>
         <path id="javadoc.classpath" >
-            <fileset dir="extlibs">
+            <fileset dir="${extlibs.dir}">
                 <include name="*.jar"/>
             </fileset>
         </path>
@@ -481,7 +481,7 @@
 
     <target name="copy-extlibs" >
         <copy todir="lib">
-            <fileset dir="extlibs" includes="*.jar"/>
+            <fileset dir="${extlibs.dir}" includes="*.jar"/>
         </copy>
     </target>
 

Modified: incubator/river/jtsk/trunk/common.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/common.xml?rev=1029694&r1=1029693&r2=1029694&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/common.xml (original)
+++ incubator/river/jtsk/trunk/common.xml Mon Nov  1 15:03:51 2010
@@ -65,9 +65,13 @@
     <property name="build.deps.dir" location="${build.dir}/deps"/>
     <property name="configentry.dir" location="${configentry}"/>
     <property name="dist.dir" location="dist"/>
+
     <property name="lib.dir" location="${lib}"/>
     <property name="lib-dl.dir" location="${lib-dl}"/>
     <property name="lib-ext.dir" location="${lib-ext}"/>
+
+    <property name="extlibs.dir" location="${root}/extlibs"/>
+
     <property name="test.dir" value="${test}"/>
     <property name="test.src.dir" value="${test.src}"/>
     <property name="test.lib.dir" value="${test.lib}"/>

Modified: incubator/river/jtsk/trunk/qa/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/qa/build.xml?rev=1029694&r1=1029693&r2=1029694&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/qa/build.xml (original)
+++ incubator/river/jtsk/trunk/qa/build.xml Mon Nov  1 15:03:51 2010
@@ -348,7 +348,7 @@
                 >
             <bottom><![CDATA[${api.copyright}]]></bottom>
             <classpath>
-                <fileset dir="${root}/extlibs">
+                <fileset dir="${extlibs.dir}">
                     <include name="*.jar"/>
                 </fileset>
             </classpath>