I am trying to understand Maven a little.
Can someone please explain what is an artifact and why does Maven need them?
|
|
An artifact is a file, usually a JAR, that gets deployed to a Maven repository. A Maven build produces one or more artifacts, such as a compiled JAR and a "sources" JAR. Each artifact has a group ID (usually a reversed domain name, like com.example.foo), an artifact ID (just a name), and a version string. The three together uniquely identify the artifact. A project's dependencies are specified as artifacts. |
|||||
|
|
In general software terms, an "artifact" is something produced by the software development process, whether it be software related documentation or an executable file. In Maven terminology, the artifact is the resulting output of the maven build, generally a |
|||||
|
|
Maven organizes its build in projects. An
Maven artifacts are not limited to java resources. You can generate whatever resource you need. E.g. documentation, project-site, zip-archives, native-libraries, etc. Each maven project has a unique identifier consiting of |
||||
|
|
|
To maven, the build process is arranged as a set of artifacts. Artifacts include:
Artifacts live in repositories. |
|||
|
|
|
An artifact is a JAR or something that you store in a repository. Maven gets them out and builds your code. |
|||
|
|