Is there a guide that outlines how to perform each of the following ant tasks using Maven?

http://ant.apache.org/manual/tasklist.html

Is it considered best practice to use Maven for these tasks or just run them in ANT via ant tasks feature.

link|improve this question

48% accept rate
If you give more precise information which kind of build/task you have to do someone can help with an appropriate answer how to achieve this in Maven. – khmarbaise Aug 16 '11 at 20:19
feedback

3 Answers

There is no mapping between ant tasks and "Maven tasks", because Maven doesn't have tasks. Its philosophy is completely different.

Ant is imperative: you tell Ant what to do with a sequence of parameterized tasks.

Maven is descriptive: you describe which kind of project you have, respect a set of conventions (or describe how you broke these conventions, and Maven decides which tasks it must do.

link|improve this answer
feedback

Somewhere there's a table that shows Maven plugins that are analagous to given Ant tasks, but I can't seem to find it. The "Available Plugins" list might help you out.

link|improve this answer
I remember seeing this somewhere on maven site, but it was a bit misleading; plus, it showed replacing ~5-line ant xml for zip with ~20 lines of maven - it's better to learn the maven's declarative approach than trying to translate – Petr Kozelka Aug 16 '11 at 17:51
@Petr: I agree that it's essential to learn how to do things in Maven, but for a beginner, it's nice to have a quick list of how common things are done in Maven. Also, I'm thinking of a different list. It doesn't show XML. It just shows common Ant tasks and the corresponding maven plugin to do the work, e.g. Ant's javac -> maven-compiler plugin, Ant's jar -> maven-jar plugin... – Ryan Stewart Aug 16 '11 at 18:29
ok, perhaps the list of codehaus plugins will help you: mojo.codehaus.org/plugins.html – Petr Kozelka Aug 17 '11 at 10:06
feedback

There is a list of ant-task-to-maven-plugin at the end of this page -> http://maven.apache.org/plugins/maven-antrun-plugin/usage.html

Unfortunately, it only covers a small subset of ant tasks.

I've recently mavenized ant-based project (I really had it with dependency management) and from that experience I had very little need to retain Ant code. The only place I've used antrun plugin was around custom code generation.

I think that it's perfectly fine to delegate some tasks to ant (and sometimes even to scripts) if that's well documented and saves time and maintenance cost.

One other place where I still use antrun is for echoing some environment properties and generic text to a build output, but maybe it's just my ignorance and there is a Maven way for that.

link|improve this answer
That's the one I was looking for :) – Ryan Stewart Aug 18 '11 at 1:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.