com.specificlanguages.mps
Owner:
Sergej Koščejev
A simple plugin for building JetBrains MPS projects
Sources: https://github.com/specificlanguages/mps-gradle-plugin
Version 1.8.0 (latest)
Created 14 June 2024.
Builds JetBrains MPS projects using a simple declarative configuration model
Add this plugin to your build using the plugins DSL:
plugins {
id("com.specificlanguages.mps") version "1.8.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.specificlanguages.mps:com.specificlanguages.mps.gradle.plugin:1.8.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.specificlanguages.mps") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.specificlanguages.mps:com.specificlanguages.mps.gradle.plugin:1.8.0") } } apply(plugin = "com.specificlanguages.mps")
- Applying plugins to all subprojects .