Ant
- Can I import existing Ant builds into Gradle?
- Can I use a Gradle build in Ant?
- Can I use Ant tasks from Gradle?
Can I import existing Ant builds into Gradle?
Last updated July 24th, 2009
Gradle can import any Ant build script. Gradle integrates deeply with an Ant build. Every Ant target is represented as a Grade task. This task can be further enhanced in your Gradle build script. The integration even works in both ways. You can depend on Gradle tasks in your build.xml. In addition, accessing and modifying Ant properties from your build script is now much easier. See UG 14.2 for details.
Back to top | Was this helpful? Yes - No
Can I use a Gradle build in Ant?
Last updated July 24th, 2009
Ant targets can depend on Gradle tasks. See UG 14.2 for details. But at the moment the Gradle build needs to be the master and import the Ant build to make this work. You can't import a Gradle build into Ant yet.
Back to top | Was this helpful? Yes - No
Can I use Ant tasks from Gradle?
Last updated July 24th, 2009
You can use any Ant task from Gradle. For details see UG 14.1
Back to top | Was this helpful? Yes - No