Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Caleb King
32,777 PointsWhat does maven do?
I see people use terminal and type in the following commands
mvn clean mvn install mvn clean install mvn test mvn build
etc What does maven do?
1 Answer

Will Hughes
1,992 PointsMaven is used with Java, it's excellent because Maven will download all of the libraries you wish to use in your Application, Maven also uses Convention over Configuration so that by default you don't need to define the tasks you'd like to do.
If you'd like to get started with Maven I'd recommend Maven in 5 Minutes.