getClientJarPath method
Gets the path where the Minecraft client JAR file should be stored.
versionId
The version identifier string.
Returns the normalized absolute path to the client JAR file.
Implementation
String getClientJarPath(String versionId) {
return normalizePath(p.join(getVersionDir(versionId), '$versionId.jar'));
}