Maven ant plugin – Generate build.xml from pom.xml
Suppose you had created and maintained your project from maven for long time, but now you have instructions to move it to ant build environment. Well, it does not look easy, but it really is very much.
All you need to use if maven ant plugin which is specifically only for this purpose.
$ mvn ant:ant |
Lets see a detailed example to generate ant build file from maven pom file using maven ant plugin.
1. Create sample maven project
$ mvn archetype:generate -DgroupId=com.howtodoinjava -DartifactId=antBuildScriptDemo -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode= false |
2. Generate ant script from pom.xml
$ cd antBuildScriptDemo $ mvn ant:ant |
3. Demo to generate build.xml from pom.xml
Above command will generate 3 files in project root folder.
build.xml
maven-build.properies
maven-build.xml
To run the above generated ant file, install ant in your system and execute the
build.xml
file like this:ant build.xml |