//
you're reading...

Frameworks,Maven

How to generate ant build file from maven

Suppose you had created and maintained your project from maven from 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’s ant plugin which is specifically only for this purpose.

Lets see an example:

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) Above command will generate following 3 files in project root folder.

  1. build.xml
  2. maven-build.properies
  3. 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

Happy Learning !!

Reference: http://maven.apache.org/plugins/maven-ant-plugin/index.html

Discussion

No comments yet.

Leave a comment

Enter your email address to receive notifications of new posts by email.

  • Latest Updates

    • Reading/writing excel files in java : POI tutorial ... 16 hours ago
    • Popular HashMap and ConcurrentHashMap interview questions ... 5 days ago
    • 8 signs of bad unit test cases ... 1 week ago
    • 5 class design principles [S.O.L.I.D.] in java ... 1 week ago

Copyright Information