Skip to content

Commit

Permalink
Enable Xalan invocations to pull extension classes from sources defin…
Browse files Browse the repository at this point in the history
…ed in this project.
  • Loading branch information
iay committed Mar 21, 2009
1 parent f94c2c5 commit 9bb23f3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<property name="build.dir" value="${basedir}/build"/>
<property name="endorsed.dir" value="endorsed"/>
<property name="entities.dir" value="entities"/>
<property name="bin.dir" value="bin"/>
<property name="lib.dir" value="lib"/>
<property name="templates.dir" value="templates"/>
<property name="xalan.dir" value="xalan-j_2_6_0"/>
Expand Down Expand Up @@ -280,7 +281,10 @@
<attribute name="x"/>
<sequential>
<java fork="true" maxmemory="384m" failonerror="true" classname="org.apache.xalan.xslt.Process">
<classpath location="${xalan.dir}/bin/xalan.jar"/>
<classpath>
<pathelement location="${xalan.dir}/bin/xalan.jar"/>
<pathelement path="${bin.dir}"/>
</classpath>
<arg value="-IN"/>
<arg value="${xml.dir}/@{i}"/>
<arg value="-OUT"/>
Expand Down

0 comments on commit 9bb23f3

Please sign in to comment.