Groovy Documentation

org.gradle.api.artifacts
[Java] Interface ModuleVersionIdentifier


public interface ModuleVersionIdentifier

The identifier of a module version.


Method Summary
java.lang.String getGroup()

The group of the module.

java.lang.String getName()

The name of the module.

java.lang.String getVersion()

The version of the module

 

Method Detail

getGroup

public java.lang.String getGroup()
The group of the module.
Returns:
module group


getName

public java.lang.String getName()
The name of the module.
Returns:
module name


getVersion

public java.lang.String getVersion()
The version of the module
Returns:
module version


 

Groovy Documentation