Package org.gradle.api.artifacts
Interface ModuleVersionIdentifier
-
- All Superinterfaces:
java.io.Serializable
public interface ModuleVersionIdentifier extends java.io.Serializable
The identifier of a module version.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getGroup()
The group of the module.ModuleIdentifier
getModule()
Returns theModuleIdentifier
containing the group and the name of this module.java.lang.String
getName()
The name of the module.java.lang.String
getVersion()
The version of the module
-
-
-
Method Detail
-
getVersion
java.lang.String getVersion()
The version of the module- Returns:
- module version
-
getGroup
java.lang.String getGroup()
The group of the module.- Returns:
- module group
-
getName
java.lang.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
-
-