Update of /cvsroot/jcharts/krysalis-jcharts
In directory sc8-pr-cvs1:/tmp/cvs-serv17855
Modified Files:
build.xml
Log Message:
added target to build the website chart samples
Index: build.xml
===================================================================
RCS file: /cvsroot/jcharts/krysalis-jcharts/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** build.xml 31 May 2003 18:18:34 -0000 1.2
--- build.xml 16 Aug 2003 16:01:45 -0000 1.3
***************
*** 81,84 ****
--- 81,98 ----
+
+ <!--===============================================================================-->
+ <!-- generates the samples used on the web site. -->
+ <target name="websiteSamples" depends="compile">
+ <java classname="org.krysalis.jcharts.demo.samples.Sample">
+ <arg value="./src/documentation/resources/images" />
+ <classpath>
+ <pathelement path="${dir.build}"/>
+ <pathelement path="../lib"/>
+ </classpath>
+ </java>
+ </target>
+
+
<!--===============================================================================-->
<target name="jar" depends="compile">
|