Skip to content

Instantly share code, notes, and snippets.

@alexanderpann
Last active January 27, 2023 16:20
Show Gist options
  • Save alexanderpann/4c2ea06bc359db69dad50ba01b381fb9 to your computer and use it in GitHub Desktop.
Save alexanderpann/4c2ea06bc359db69dad50ba01b381fb9 to your computer and use it in GitHub Desktop.
Invoking downloadJbr from local mps-gradle-plugin repository
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("de.itemis.mps:mps-gradle-plugin")
}
}
repositories {
mavenCentral()
maven {
url = uri("https://artifacts.itemis.cloud/repository/maven-mps")
}
}
plugins {
id("download-jbr")
}
downloadJbr {
jbrVersion.set("17.0.3-b469.32")
distributionType.set("jbr")
}
includeBuild("/Applications/mps/build-projects/mps-gradle-plugin")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment