maven中的artifact是由maven项目生成的资源。每个maven项目只能有一个artifact,如jar, war, ear等
项目的配置文件"pom.xml"描述了如何构建工件,如何运行单元测试等等。
通常,用maven构建的软件项目由许多maven项目组成,这些maven项目构建了构件(例如jar),这些构件构成了产品
例如< / p >
Root-Project // produces no artifact, simply triggers the build of the other projects
App-Project // The application, that uses the libraries
Lib1-Project // A project that creates a library (jar)
Lib2-Project // Another library
Doc-Project // A project that generates the user documentation from some resources