/** * Returns the ID of the organisation or group that owns this module or project * * @return a non-blank ID */ public String getGroupId() { return gav.getGroupId(); }
/** * Returns the version number of this module or project * * @return a non-blank version number */ public String getVersion() { return gav.getVersion(); }
/** * Returns the ID of the artifact created by this module or project * * @return a non-blank ID */ public String getArtifactId() { return gav.getArtifactId(); }