How to create an Ant build file from Maven (pom.xml)?
In some cases, you may need to generate Ant build file (build.xml) for your project integration purpose. For example, the klockwork code analysis tool is required Ant file to perform the static code analysis processes for java project.
Maven Ant plugin
Maven comes with a handy Ant plugin to generate Ant build file from Maven pom.xml easily. Locate your pom.xml file, and issue the command : mvn ant:ant.
D:\Project_ABC>mvn ant:antOutput
D:\Project_ABC\SWP>mvn ant:ant [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'ant'. [INFO] artifact org.apache.maven.plugins:maven-ant-plugin: checking for updates from central ... [INFO] ------------------------------------------------------------------------ [INFO] Building abc [INFO] task-segment: [ant:ant] [INFO] ------------------------------------------------------------------------ ... Downloading: http://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.pom 491b downloaded ... Downloading: http://repo1.maven.org/maven2/xalan/xalan/2.7.0/xalan-2.7.0.jar 2666K downloaded [INFO] [ant:ant] [INFO] Wrote Ant project for ABC to D:\Project_ABC [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESSFUL [INFO] ------------------------------------------------------------------------ [INFO] Total time: 28 seconds [INFO] Finished at: Thu Feb 12 16:16:15 SGT 2009 [INFO] Final Memory: 9M/16M [INFO] ------------------------------------------------------------------------
Done
Maven just created 3 Ant files – build.xml, maven-build.xml and maven-build.properties.
For more detail, please visit to this Maven’s Ant plugin official page
What could I do to change the local repository where ant makes maven download the artifacts??? I have the archives fetch.xml and get-m2.xml, and I have tried there, but it didn’t work because i didn’t do it properly, i suppose. Changing settings.xml in this case doesn’t work in any way.
Any idea??
Thank you!
hi, did you means Ant’s “Download dependencies target ” ? For example,
< get src="http://download.java.net/maven/2/junit/junit/4.5/junit-4.5.jar"
dest="${maven.repo.local}/junit/junit/4.5/junit-4.5.jar"
usetimestamp="false"
ignoreerrors="true" / >
Just change the “dest” to point to your destination folder.