Package org.gradle.api.artifacts.type
Interface ArtifactTypeDefinition
- All Superinterfaces:
HasAttributes
,Named
Meta-data about a particular type of artifacts.
- Since:
- 4.0
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.gradle.api.Named
Named.Namer
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe attribute that represents the type of the artifact.static final String
Represents a binary filestatic final String
Represents a raw directorystatic final String
Represents a JAR file.static final String
Represents a directory tree containing class files.static final String
Represents a directory tree containing jvm classpath resource files.static final String
Represents a zip file -
Method Summary
Modifier and TypeMethodDescriptionDefines the set of attributes to apply to a component that is packaged as an artifact of this type, when no other attributes are defined.Returns the set of file name extensions that should be mapped to this artifact type.
-
Field Details
-
ARTIFACT_TYPE_ATTRIBUTE
The attribute that represents the type of the artifact.- Since:
- 7.3
-
JAR_TYPE
Represents a JAR file.- Since:
- 4.0
- See Also:
-
JVM_CLASS_DIRECTORY
Represents a directory tree containing class files.- Since:
- 4.0
- See Also:
-
JVM_RESOURCES_DIRECTORY
Represents a directory tree containing jvm classpath resource files.- Since:
- 4.0
- See Also:
-
ZIP_TYPE
Represents a zip file- Since:
- 5.3
- See Also:
-
DIRECTORY_TYPE
Represents a raw directory- Since:
- 5.3
- See Also:
-
BINARY_DATA_TYPE
Represents a binary file- Since:
- 7.4
- See Also:
-
-
Method Details
-
getFileNameExtensions
Returns the set of file name extensions that should be mapped to this artifact type. Defaults to the name of this type. -
getAttributes
AttributeContainer getAttributes()Defines the set of attributes to apply to a component that is packaged as an artifact of this type, when no other attributes are defined. For example, these attributes are applied when a Maven module contains an artifact with one of the extensions listed ingetFileNameExtensions()
.- Specified by:
getAttributes
in interfaceHasAttributes
-