Skip to content

Commit

Permalink
Remove unused modelix dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
nkoester committed Nov 13, 2024
1 parent 26d4eba commit e04c7c7
Showing 1 changed file with 1 addition and 26 deletions.
27 changes: 1 addition & 26 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,9 @@ buildscript {

dependencies {
classpath("de.itemis.mps:mps-gradle-plugin:1.28.0.1.f8ee996")
classpath("org.modelix.mpsbuild:gradle-plugin:1.0.+")
}
}

apply(plugin = "modelix-gradle-mpsbuild-plugin")

plugins {
id("maven-publish")
id("download-jbr") version "1.5.269.964f94a"
Expand Down Expand Up @@ -117,10 +114,6 @@ object Versions {

}





// tasks
val extractMps by tasks.registering(Copy::class) {
from({ mps.resolve().map { zipTree(it) } })
Expand Down Expand Up @@ -192,7 +185,7 @@ val packageMpsPlugin by tasks.registering(Zip::class) {
dependsOn(buildLanguages)
archiveFileName.set(Versions.groupID + "." + Versions.artifactID + "." + Versions.buildVerison + ".zip")

from(file("build/artifacts/de.doge.mps.dot.build"))
from(file("build/artifacts/de.doge.dot.build"))
destinationDirectory.set(publishDir)
}

Expand Down Expand Up @@ -228,21 +221,3 @@ publishing {

}


configure<org.modelix.gradle.mpsbuild.MPSBuildSettings> {
generatorHeapSize = "4G"
macro("iets3.github.opensource.home", "..")

mps(""+Versions.mpsFull)
externalModules("de.itemis.mps:extensions:" + Versions.extensions)

search("../mps/languages")

publication("dot") {
module("libre.doge.mps.dot")
module("libre.doge.mps.dot.genplan")
module("libre.doge.mps.dot.plaintextgen")
}
}


0 comments on commit e04c7c7

Please sign in to comment.