Hi,
I'm migrating our ant scripts to Gradle and one of the scripts executes
a 3rd party class like so:
 
<target name="transform-accept-server-file">
        <java
classname="com.blazesoft.server.deploy.tools.NdServerConfigSerializer"
fork="true" failonerror="true">
            <classpath>
                <path refid="project.classpath"/>
            </classpath>
            <jvmarg line="-Dnd.resourcepath=${blaze.resource.path}"/>
            <arg line="-dir 'sources/ie/vhi/ias/bre/blaze/config'"/>
            <arg line="-prefix 'Accept'"/>
            <arg line="-server '${resources.dir}/Accept.server'"/>
            <arg line="-package 'ie.vhi.ias.bre.blaze.config'"/>
        </java>
    </target>
 
What's the 'smart' way to do this in Gradle?
Should I just define a Gradle task to call 'ant.java()' or have Groovy
execute it using Groovy's execute()?
 
Thanks,
Donal. 

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to