File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 36
36
run : >-
37
37
./gradlew --build-cache
38
38
:bulk-model-sync-mps:build
39
+ :metamodel-export:build
39
40
:mps-model-adapters:build
40
41
:mps-model-server-plugin:build
41
42
-Pmps.version=${{ matrix.version }}
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ plugins {
7
7
8
8
group = " org.modelix.mps"
9
9
10
+ val mpsVersion = project.findProperty(" mps.version" )?.toString().takeIf { ! it.isNullOrBlank() } ? : " 2021.1.4"
11
+
10
12
val generatorLibs by configurations.creating
11
13
12
14
dependencies {
@@ -32,7 +34,7 @@ val copyLibs by tasks.registering(Sync::class) {
32
34
33
35
extensions.configure<MPSBuildSettings > {
34
36
dependsOn(copyLibs)
35
- mpsVersion(" 2021.1.4 " )
37
+ mpsVersion(mpsVersion )
36
38
search(" ." )
37
39
disableParentPublication()
38
40
You can’t perform that action at this time.
0 commit comments