Fix groovy's markup builder

This commit is contained in:
Fedor Isakov 2021-06-22 13:12:04 +02:00
parent f3bc89aef7
commit 11a0bd7097
1 changed files with 4 additions and 4 deletions

View File

@ -120,14 +120,14 @@ task generateUpdatePluginsXml {
plugin( id: "jetbrains.mps.coderules" ,
url: baseUrl + "/$System.env.BUILD_NUMBER" + zip1 ,
version: "${version}" ) {
name { "MPS Coderules Typechecking" }
description { "Typechecking with Coderules (experimental)" }
name { mkp.yield("MPS Coderules Typechecking") }
description { mkp.yield("Typechecking with Coderules (experimental)") }
}
plugin( id: "jetbrains.mps.core.types" ,
url: baseUrl + "/$System.env.BUILD_NUMBER" + zip2 ,
version: "${version}" ) {
name { "MPS Core Types" }
description { "Types for core MPS languages (experimental)" }
name { mkp.yield("MPS Core Types") }
description { mkp.yield("Types for core MPS languages (experimental)") }
}
}
}