0 votes
in DevOps by
What Is Maven Artifact?

2 Answers

0 votes
by
In Maven artifact is simply a file or JAR that is deployed to a Maven repository. An artifact

has

-Group ID

-Artifact ID

-Version string. The three together uniquely identify the artifact. All the project

dependencies are specified as artifacts.
0 votes
by

An artifact is a file, normally a JAR that gets deployed to a Maven repository. A Maven build creates one or more artifacts, such as a compiled JAR and a source JAR.

Each artifact consists of a group ID, an artifact ID, and a version string. The three together uniquely identify the artifact. A project’s dependencies are specified as artifacts.

Related questions

0 votes
asked Jul 23, 2020 in Maven - Coalescing Pipeline by rajeshsharma
0 votes
0 votes
asked Jul 23, 2020 in DevOps by Hodge
...