build automation - Is it possible to launch Gradle tasks from Ant? -
i researching replacements ant. i've looked @ gant , gradle.
is possible kick off gradle task ant? possible in gant taskdef.
<taskdef name = "gant" classname = "org.codehaus.gant.ant.gant" classpathref = "classpath" /> <gant />
is there similar gradle? i'm eager start migrating ant gradle, have large ant infrastructure , gradle build scripts create need callable ant.
thanks!
gradle doesn't offer ant task run gradle build ant. invoke gradle command (like gradle build
) ant.
in terms of ant integration, gradle offers 2 features: importing ant builds, , reusing ant tasks.
gradle different gant. gradle entire new build system; gant thin layer above ant.
Comments
Post a Comment