|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
org.gradle.api.publish.maven.MavenArtifact org.gradle.api.Buildable
@Incubating public interface MavenArtifact extends Buildable
An artifact published as part of a MavenPublication.
Method Summary | |
---|---|
void
|
builtBy(Object... tasks)
Registers some tasks which build this artifact. |
String
|
getClassifier()
The classifier used to publish the artifact file. |
String
|
getExtension()
The extension used to publish the artifact file, never |
File
|
getFile()
The actual file contents to publish. |
void
|
setClassifier(String classifier)
Sets the classifier used to publish the artifact file. |
void
|
setExtension(String extension)
Sets the extension used to publish the artifact file. |
Methods inherited from interface Buildable | |
---|---|
getBuildDependencies |
Method Detail |
---|
public void builtBy(Object... tasks)
tasks
- The tasks. These are evaluated as per Task.dependsOn.
@Nullable public String getClassifier()
null
value (the default) indicates that this artifact will be published without a classifier.
public String getExtension()
null
.
For an artifact without an extension, this value will be an empty String.
public File getFile()
public void setClassifier(@Nullable String classifier)
classifier
- The classifier.
public void setExtension(String extension)
extension
- The extension.
Gradle API 1.12