A Collection of MavenArtifacts to be included in a MavenPublication.
Being a DomainObjectSet, a MavenArtifactSet
provides convenient methods for querying, filtering, and applying actions to the set of MavenArtifacts.
apply plugin: 'maven-publish' def publication = publishing.publications.create("name", MavenPublication) def artifacts = publication.artifacts artifacts.matching({ it.classifier == "classy" }).all({ it.extension = "ext" })
Type | Name and description |
---|---|
MavenArtifact |
artifact(Object source) Creates and adds a MavenArtifact to the set. |
MavenArtifact |
artifact(Object source, Action<? super MavenArtifact> config) Creates and adds a MavenArtifact to the set, which is configured by the associated action. |
Methods inherited from class | Name |
---|---|
interface DomainObjectSet |
findAll, matching, matching, withType |
interface DomainObjectCollection |
all, all, findAll, matching, matching, whenObjectAdded, whenObjectAdded, whenObjectRemoved, whenObjectRemoved, withType, withType, withType |
interface Set |
add, equals, hashCode, clear, contains, isEmpty, size, toArray, toArray, addAll, iterator, remove, containsAll, removeAll, retainAll |
Creates and adds a MavenArtifact to the set. The semantics of this method are the same as MavenPublication#artifact(Object)#artifact(Object).
source
- The source of the artifact content.Creates and adds a MavenArtifact to the set, which is configured by the associated action. The semantics of this method are the same as MavenPublication#artifact(Object, Action)#artifact(Object, Action).
source
- The source of the artifact.config
- An action or closure to configure the values of the constructed MavenArtifact.