complete website code
This commit is contained in:
26
js/build.xml
Normal file
26
js/build.xml
Normal file
@ -0,0 +1,26 @@
|
||||
<project name="tablesorter" default="default" basedir=".">
|
||||
|
||||
<!-- SETUP -->
|
||||
<property description="Files for parsing etc." name="BUILD_DIR" value="build" />
|
||||
<property description="Rhino JS Engine" name="JAR" value="${BUILD_DIR}/js.jar" />
|
||||
|
||||
<!-- Files names for distribution -->
|
||||
<property name="TS" value="jquery.tablesorter.js" />
|
||||
<property name="TS_MIN" value="jquery.tablesorter.min.js" />
|
||||
|
||||
<!-- MAIN -->
|
||||
<target name="min">
|
||||
<echo message="Building ${TS_MIN}" />
|
||||
<java jar="${JAR}" fork="true">
|
||||
<arg value="${BUILD_DIR}/min.js" />
|
||||
<arg value="${TS}" />
|
||||
<arg value="${TS_MIN}" />
|
||||
</java>
|
||||
<echo message="${TS_MIN} built." />
|
||||
</target>
|
||||
|
||||
<target name="default">
|
||||
<antcall target="min"/>
|
||||
</target>
|
||||
|
||||
</project>
|
Reference in New Issue
Block a user