Represents the artifacts which will be deployed to a Maven repository. You can use this interface to modify the set of artifacts.
Type | Name and description |
---|---|
void |
addArtifact(PublishArtifact artifact) Adds an additional artifact to this deployment. |
Set<PublishArtifact> |
getArtifacts() Returns the artifacts which will be deployed. |
Set<PublishArtifact> |
getAttachedArtifacts() Returns the additional artifacts for this deployment. |
PublishArtifact |
getMainArtifact() Returns the main artifact for this deployment. |
PublishArtifact |
getPomArtifact() Returns the POM for this deployment. |
Adds an additional artifact to this deployment.
artifact
- The artifact to add.Returns the artifacts which will be deployed. Includes the POM artifact.
Returns the additional artifacts for this deployment.
Returns the main artifact for this deployment.
Returns the POM for this deployment.