Package org.gradle.api.artifacts
Interface ModuleVersionIdentifier
-
- All Superinterfaces:
Serializable
public interface ModuleVersionIdentifier extends Serializable
The identifier of a module version.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetGroup()The group of the module.ModuleIdentifiergetModule()Returns theModuleIdentifiercontaining the group and the name of this module.StringgetName()The name of the module.StringgetVersion()The version of the module
-
-
-
Method Detail
-
getVersion
String getVersion()
The version of the module- Returns:
- module version
-
getGroup
String getGroup()
The group of the module.- Returns:
- module group
-
getName
String getName()
The name of the module.- Returns:
- module name
-
getModule
ModuleIdentifier getModule()
Returns theModuleIdentifiercontaining the group and the name of this module. Contains the same information asgetGroup()andgetVersion()- Returns:
- the module identifier
- Since:
- 1.4
-
-