Skip to content

Commit

Permalink
build: use MPS 2024.3-EAP1
Browse files Browse the repository at this point in the history
  • Loading branch information
sergej-koscejev committed Nov 21, 2024
1 parent 2c80db9 commit 75a97c2
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ logger.info 'Repository username: {}', project.nexusUsername
// Dependency versions

// major version, e.g. '2021.1', '2021.2'
ext.mpsMajor = '9999.9'
ext.mpsMajor = '2024.3'
// optional minor/bugfix number (not added to the final build version)
ext.mpsMinor = ''
// e.g. Beta, EAP, RC
ext.mpsReleaseType = ''
ext.mpsReleaseType = 'EAP1'

def appendOpt = { str,pre -> !str.isEmpty() ? "${pre}${str}" : "" }
ext.mpsVersion = "$mpsMajor" + appendOpt(mpsMinor, '.') + appendOpt(mpsReleaseType, '-')
Expand Down Expand Up @@ -93,9 +93,7 @@ configurations {
}

dependencies {
// For published releases adjust ext.mpsMajor and ext.mpsMinor above and use this dependency:
// mps "com.jetbrains:mps:$mpsVersion"
mps "com.jetbrains.mps:mps-prerelease:243.21565.177"
mps "com.jetbrains:mps:$mpsVersion"
}

repositories {
Expand Down

0 comments on commit 75a97c2

Please sign in to comment.