Ant RMIC Compiler Adaptor for GNU Classpath

I made two compiler adaptors for using GNU Classpath RMIC with Ant:

To use it, compile GNUClasspathRmic.java with the Ant jars in the classpath, and put it in a jar in the $ANT_HOME/lib directory.

You can now use it from a build.xml file like this (example taken from a modified JOnAS build.xml):

    <rmic compiler="org.apache.tools.ant.taskdefs.rmic.GNUClasspathRmic"
          iiop="true"
          iiopopts="-always"
          stubversion="${stub.version}"
          classname="${classname}"
          base="classes/common">

cacaowiki: AntRmicAdaptor (last edited 2006-05-29 18:00:19 by EdwinSteiner)