Add Maven to a Web Application Project

1

Good morning, I'm using a Web Application Project, so I can use Google App Engine. I would like to be able to download .jar and its dependencies using Maven, does anyone know how to add Maven to my Web Application Project?

    
asked by anonymous 13.03.2015 / 13:24

1 answer

1

What you can do if you already have Maven installed and configured on your machine and in the IDE, right-click on the project > Configure > Convert to Project Maven (follow the image). Or before that you would need to configure Maven on your machine, the environment variables and your IDE if needed, follow the link below: link .

If your IDE is Eclipse you can download to this IDE in Eclipse MarketPlace. Help > Eclipse MarketPlace > Search by Maven > And install the Maven Integration For Eclipse Luna, or with the name of the version of your IDE that can be Luna, Kepler, among others.

And then you have to configure the pom.xml that Maven generates according to the frameworks you need to use

    
13.03.2015 / 13:52