0

I can't really understand what exactly this Maven plugin does. Can someone explain to me what it does and how can this benefit my Android project? Thanks a lot!

stackflow
  • 2,112
  • 6
  • 32
  • 45

1 Answers1

1

Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.

Visit Maven Website Here

You can read more about what maven is and how it is used in this SO post.

One of the perks of using maven is that is will automatically download the latest version of a library for you.

Community
  • 1
  • 1
Shane
  • 972
  • 2
  • 12
  • 27