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 2011/01/13 16:55:14 UTC

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

Author: sijskes
Date: Thu Jan 13 15:55:14 2011
New Revision: 1058618

URL: http://svn.apache.org/viewvc?rev=1058618&view=rev
Log:
added velocity

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

Modified: incubator/river/jtsk/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/build.xml?rev=1058618&r1=1058617&r2=1058618&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/build.xml (original)
+++ incubator/river/jtsk/trunk/build.xml Thu Jan 13 15:55:14 2011
@@ -257,7 +257,7 @@
             <pathelement path="${src.dir}"/>
         </path>
         <path id="javadoc.classpath" >
-            <fileset refid="asm.jars"/>
+            <path refid="compile.classpath"/>
         </path>
     </target>
 
@@ -505,7 +505,7 @@
         <property name="river.source" value="5" />
         <property name="river.target" value="jsr14" />
         <javac-cmd source="${river.source}" target="${river.target}" source.dir="${src.dir}" dest.dir="${build.classes.dir}">
-            <classpath refid="asm.classpath" />
+            <classpath refid="compile.classpath" />
         </javac-cmd>
     </target>
 

Modified: incubator/river/jtsk/trunk/common.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/common.xml?rev=1058618&r1=1058617&r2=1058618&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/common.xml (original)
+++ incubator/river/jtsk/trunk/common.xml Thu Jan 13 15:55:14 2011
@@ -130,6 +130,16 @@
         <include name="asm-commons-3.2.jar" />
     </fileset>
 
+    <fileset id="velocity.jars" dir="${root}/velocity">
+        <include name="velocity-1.7.jar" />
+    </fileset>
+
+    <path id="compile.classpath" >
+        <fileset refid="asm.jars" />
+        <fileset refid="velocity.jars" />
+    </path>
+
+
     <path id="asm.classpath">
         <fileset refid="asm.jars" />
     </path>