diff --git a/Plan/build.gradle b/Plan/build.gradle index 2d1d1fbfa..e7bb84efe 100644 --- a/Plan/build.gradle +++ b/Plan/build.gradle @@ -42,6 +42,7 @@ allprojects { ext.minorVersion = '6' ext.buildVersion = buildVersion ext.fullVersion = project.ext.majorVersion + '.' + project.ext.minorVersion + ' build ' + project.ext.buildVersion + ext.fullVersionSemantic = project.ext.majorVersion + '.' + project.ext.minorVersion + '+build.' + project.ext.buildVersion // Fix for UTF-8 files showing with wrong encoding when compiled on Windows machines. compileJava { options.encoding = "UTF-8" } @@ -49,7 +50,7 @@ allprojects { javadoc { options.encoding = 'UTF-8' } } -logger.lifecycle("Building artifact for version $fullVersion") +logger.lifecycle("Building artifact for version $fullVersion / $fullVersionSemantic") subprojects { // Build plugins diff --git a/Plan/fabric/build.gradle b/Plan/fabric/build.gradle index 0fdd9631c..794c9cd26 100644 --- a/Plan/fabric/build.gradle +++ b/Plan/fabric/build.gradle @@ -43,7 +43,7 @@ processResources { inputs.property "version", project.ext.fullVersion filesMatching("fabric.mod.json") { - expand "version": project.ext.fullVersion + expand "version": project.ext.fullVersionSemantic } }