Skip to content

Commit 0f86400

Browse files
committed
use MPS 2025.1 release for build
1 parent c31eaa2 commit 0f86400

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ if (System.env.CI != null && System.env.CI.toBoolean()) {
2929
ext.ciBuild = project.hasProperty("teamcity")
3030
}
3131

32-
// Project versions
33-
ext.major = '9999'
34-
ext.minor = '9'
32+
ext.major = '2025'
33+
ext.minor = '1'
34+
ext.bugfix = ''
35+
ext.mpsVersion = ext.major + '.' + ext.minor + (ext.bugfix ? '.' + ext.bugfix : '')
3536

3637
if (ciBuild) {
3738
String branch = GitBasedVersioning.gitBranch
@@ -62,9 +63,8 @@ configurations {
6263
}
6364

6465
dependencies {
65-
// Use the following dependency for published releases:
66-
// mps 'com.jetbrains:mps:2024.3'
67-
mps 'com.jetbrains.mps:mps-prerelease:251.23774.10102'
66+
mps 'com.jetbrains:mps:$mpsVersion'
67+
6868
antLib "org.apache.ant:ant-junit:1.10.15"
6969
antLib "org.jacoco:org.jacoco.ant:0.8.13"
7070

0 commit comments

Comments
 (0)