From f080089e0e06b7e6ede767be688bd362887811df Mon Sep 17 00:00:00 2001 From: Brett Leslie Porter Date: Sun, 17 Jul 2005 22:30:13 +0000 Subject: [PATCH] add Ant FAQ git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@219409 13f79535-47bb-0310-9956-ffa450edef68 --- maven-site/src/site/fml/general.fml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/maven-site/src/site/fml/general.fml b/maven-site/src/site/fml/general.fml index 1badd5a31b..e13c40155b 100644 --- a/maven-site/src/site/fml/general.fml +++ b/maven-site/src/site/fml/general.fml @@ -29,5 +29,27 @@

+ + How can I use Ant tasks in Maven 2? + +

+ There are 3 alternatives: +

+
    +
  • + For use in a plugin written in Java, Beanshell or other Java-like scripting language, you can construct + the Ant tasks using the instructions given in the Ant + documentation +
  • +
  • + You can write your plugin using Marmalade, and use the Ant tasks much like you would from Jelly in Maven 1.0. +
  • +
  • + If you have very small amounts of Ant script specific to your project, you can use the + AntRun plugin. +
  • +
+
+