Package run.halo.gradle.utils
Interface LibraryCoordinates
public interface LibraryCoordinates
Encapsulates information about the artifact coordinates of a library.
-
Method Summary
Modifier and TypeMethodDescriptionReturn the artifact ID of the coordinates.Return the group ID of the coordinates.Return the version of the coordinates.static StringtoStandardNotationString(LibraryCoordinates coordinates) Utility method that returns the given coordinates using the standardgroup:artifact:versionform.
-
Method Details
-
getGroupId
String getGroupId()Return the group ID of the coordinates.- Returns:
- the group ID
-
getArtifactId
String getArtifactId()Return the artifact ID of the coordinates.- Returns:
- the artifact ID
-
getVersion
String getVersion()Return the version of the coordinates.- Returns:
- the version
-
toStandardNotationString
Utility method that returns the given coordinates using the standardgroup:artifact:versionform.- Parameters:
coordinates- the coordinates to convert (may benull)- Returns:
- the standard notation form or
"::"when the coordinates are null
-