Apache Maven
定义
pom.xml
- <modelVersion>. POM(project object mode) model version
- <groupId>. Group or organization that the project belongs to.
- <artifactId>. Name to be given to the project's library artifact.
- <version>. Version of the project that is being built.
- <packaging>. How the project should be packaged. 可选。jar or war file.
<dependency> element:
- <groupId> - The group or organization that the dependency belongs to.
- <artifactId> - The library that is required.
- <version> - The specific version of the library that is required.