Package org.gradle.api.publish.maven
Interface MavenDependency
-
@Deprecated public interface MavenDependency
Deprecated.This type is not referenced by any other public API classes. It will be removed in Gradle 9.0A dependency declared as part of anMavenPublication
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getArtifactId()
Deprecated.The artifactId value for this dependency.java.lang.String
getGroupId()
Deprecated.The groupId value for this dependency.java.lang.String
getType()
Deprecated.The type value for this dependency.java.lang.String
getVersion()
Deprecated.The version value for this dependency.
-
-
-
Method Detail
-
getGroupId
java.lang.String getGroupId()
Deprecated.The groupId value for this dependency.
-
getArtifactId
java.lang.String getArtifactId()
Deprecated.The artifactId value for this dependency.
-
getVersion
java.lang.String getVersion()
Deprecated.The version value for this dependency.
-
getType
@Nullable java.lang.String getType()
Deprecated.The type value for this dependency.
-
-