How to convert Ant project to Maven project

41,534

Solution 1

The nice part of using maven is that most standard stuff works automatically once you do things the maven way. For a simple webapp:

  1. Create a pom with groupId, artifactId and version (packaging: war)
  2. Add the required dependencies to the pom
  3. move the
    • java sources to src/main/java,
    • resources to src/main/resources,
    • webapp content to src/main/webapp,
    • test content to src/test/java and src/test/resources
  4. set the compiler compliance version using the maven compiler plugin

That should get you up 'n' running.

Solution 2

http://www.sonatype.com/people/2009/04/how-to-convert-from-ant-to-maven-in-5-minutes/

I don't know what your ant script looks like, but assuming its a basic script for building, you will need to create a pom.xml file for your project, add your dependencies, and then build it via maven.

Solution 3

For anyone who lands here in future, there is an easier way to find dependencies for maven using the file hashes. So, you won't have to guess artifact versions.

As per the below article, the idea is to generate a SHA1 checksum of the dependency that you want to find the information, then do a reverse search in Nexus repository manager using that hash. For the checksum generation, you can use Microsoft's FCIV (free) utility.

https://devreads.xyz/ant-to-maven-conversion-the-painless-method/

Share:
41,534

Related videos on Youtube

adelarsq
Author by

adelarsq

Architect at Datacoper *nix user since 2003 (Linux and FreeBSD) Sites and blogs: adelarsq.blogspot.com daily-rust.github.io/

Updated on October 22, 2020

Comments

  • adelarsq
    adelarsq over 3 years

    How to convert a Ant project to Maven project? A sample project that would link (a Wicket project)

    Thanks

  • steven7mwesigwa
    steven7mwesigwa about 5 years
    Is it possible to do this without loosing git history for both my "webapp content" and java sources ? I backup and tested a duplicate but it looks like you loose git history for file moves.
  • Alessio
    Alessio almost 5 years
    A link to a solution is welcome, but please ensure your answer is useful without it: add context around the link so your fellow users will have some idea what it is and why it’s there, then quote the most relevant part of the page you're linking to in case the target page is unavailable. Answers that are little more than a link may be deleted..
  • DinushaNT
    DinushaNT almost 5 years
    Edited the answer