0 votes
in Maven - Coalescing Pipeline by
Explain Maven Artifact.

1 Answer

0 votes
by
Maven artifact is known as a file (generally a jar) that is extended to the Maven repository. Maven build generates multiple artifacts comprising of source jar and compiled jar. GroupId, artifactId, and version together form an artifact and all of the three combined solely identifies it.

The below code snippet shows an example of the Maven artifact.

<dependency>

    <groupId> org.selenium </groupId>

    <artifactId> seleniumJava </artifactId>

    <version> 4.0.2 </version>

</dependency>

Related questions

+1 vote
asked Oct 25, 2021 in Maven - Coalescing Pipeline by Robin
0 votes
asked Sep 4, 2023 in Maven - Coalescing Pipeline by JackTerrance
...