The documentation about dependency:properties
goal of the Maven dependency plugin states, that:
Goal that sets a property pointing to the artifact file for each project dependency. For each dependency (direct and transitive) a project property will be set which follows the groupId:artifactId:type:[classifier] form and contains the path to the resolved artifact.
But I can not find the description of what is classifier
.
In my build logs I see that it uses the snapshot version plus build timestamp, like this:
foo.group.id:foo.artifact.id:jar:0.1.2-20180213.101423-2
My question: where this format is configured?