How to convert Ant project to Maven project
Asked Answered
D

3

26

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

Thanks

Deflection answered 27/10, 2010 at 2:13 Comment(0)
R
25

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.

Rig answered 27/10, 2010 at 9:3 Comment(1)
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.Phytoplankton
V
5

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.

Vitovitoria answered 27/10, 2010 at 2:13 Comment(0)
M
1

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://dzone.com/articles/ant-to-maven-conversion-the-painless-method

Ml answered 29/7, 2019 at 9:19 Comment(2)
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..Theodicy
Edited the answerMl

© 2022 - 2024 — McMap. All rights reserved.