Ant
From CauchoWiki
Resin 3.1.5 includes a resin-ant.jar in ${resin.home}/plugins/resin-ant.jar with several useful task:
[edit] resin-jspc
<project name="test" default="test" basedir=".">
<property name="resin.home" value="/usr/local/share/resin"/>
<target name="test">
<taskdef name="resin-jspc"
classname="com.caucho.ant.Jspc">
<classpath>
<fileset dir="${resin.home}">
<include name="plugins/resin-ant.jar"/>
<include name="lib/*.jar"/>
</fileset>
</classpath>
</taskdef>
<resin-jspc rootDirectory="/home/ferg/ws/dist/my-webapp"/>
</target>
</project>
