Package org.gradle.api.artifacts
Interface ModuleVersionIdentifier
- All Superinterfaces:
Serializable
The identifier of a module version.
-
Method Summary
Modifier and TypeMethodDescriptiongetGroup()
The group of the module.Returns theModuleIdentifier
containing the group and the name of this module.getName()
The name of the module.The version of the module
-
Method Details
-
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 theModuleIdentifier
containing the group and the name of this module. Contains the same information asgetGroup()
andgetName()
- Returns:
- the module identifier
- Since:
- 1.4
-