From 2054aeffee84e8352c36b4c621bb78ed4825a9f2 Mon Sep 17 00:00:00 2001 From: Alexander Pann Date: Fri, 12 May 2023 22:42:53 +0200 Subject: [PATCH] Update to 2022.3 --- build.gradle | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index f751450..2aa91cb 100644 --- a/build.gradle +++ b/build.gradle @@ -6,8 +6,8 @@ plugins { import de.undercouch.gradle.tasks.download.Download -ext.mpsMajor = '2022.2' -ext.mpsBuild = '2022.2' +ext.mpsMajor = '2022.3' +ext.mpsBuild = '2022.3' def mpsDownloadDir = new File(project.buildDir, "MPS-${mpsBuild}") def mpsDownloadFile = new File(mpsDownloadDir, "MPS-${mpsBuild}.zip") @@ -35,7 +35,6 @@ task unzipMPS(dependsOn: downloadMPS) { } } -// Repackages MPS so that the resulting zip contains the contents of 'MPS 3.' directory of the original MPS zip task publishMPS(type: Zip, dependsOn: unzipMPS) { from mpsUnpackedDir }