How to convert a Ant project to Maven project? A sample project that would link (a Wicket project)
Thanks
How to convert a Ant project to Maven project? A sample project that would link (a Wicket project)
Thanks
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.
The nice part of using maven is that most standard stuff works automatically once you do things the maven way. For a simple webapp:
That should get you up 'n' running.