views:

60

answers:

1

Hi there,

We have a project that uses Maven as its build/dependency management tool. But our code needs to be compiled at our client's site and our client demands that we deliver build scripts written for Ant.

So, we would like to keep working with Maven and automatically generate the Ant scripts when we need to deliver the code to the client.

Can we do that?

+8  A: 

You can use the Maven Ant Plugin.

Valentin Rocher
Thanks! That's what I needed. I had googled for it and found only the other plugin that can run Ant tasks within Maven builds.
Dema