|
| 1 | +/* (c) https://github.com/MontiCore/monticore */ |
| 2 | + |
| 3 | +plugins { |
| 4 | + id 'version-catalog' |
| 5 | +} |
| 6 | + |
| 7 | +catalog { |
| 8 | + // declare the aliases, bundles and versions in this block |
| 9 | + versionCatalog { |
| 10 | + library("se-logging", "de.se_rwth.commons", "se-commons-logging").version(version) |
| 11 | + library("se-utilities", "de.se_rwth.commons", "se-commons-utilities").version(version) |
| 12 | + library("mc-lsp", "de.monticore.language-server", "monticore-language-server-runtime").version(version) |
| 13 | + library("mc-grammar", "de.monticore", "monticore-grammar").version(version) |
| 14 | + library("mc-runtime", "de.monticore", "monticore-runtime").version(version) |
| 15 | + library("mc-c2mc", "de.monticore", "class2mc").version(version) |
| 16 | + library("mc-cd4a", "de.monticore.lang", "cd4analysis").version(version) |
| 17 | + library("mc-ocl", "de.monticore.lang", "ocl").version(version) |
| 18 | + library("mc-ocl-ocl2smt", "de.monticore.lang.ocl", "ocl2smt").version(version) |
| 19 | + library("mc-statecharts", "de.monticore.lang", "statecharts").version(version) |
| 20 | + library("mc-fd", "de.monticore.lang", "fd-lang").version(version) |
| 21 | + library("mc-sd", "de.monticore.lang", "sd-language").version(version) |
| 22 | + library("mc-montifun", "de.monticore.lang", "montifun").version(version) |
| 23 | + library("mc-montiarc", "montiarc.languages", "montiarc").version(version) |
| 24 | + library("mc-montiarc-ma2jsim", "montiarc.generators", "ma2jsim").version(version) |
| 25 | + |
| 26 | + plugin("se-commons", "de.se_rwth.commons.se-commons-gradle").version(version) |
| 27 | + plugin("mc-generator", "de.monticore.generator.de.monticore.generator.gradle.plugin").version(version) |
| 28 | + plugin("mc-language-server", "de.monticore.language-server.de.monticore.language-server.gradle.plugin").version(version) |
| 29 | + plugin("montiarc-jsim", "montiarc-jsim.gradle.plugin").version(version) |
| 30 | + } |
| 31 | +} |
| 32 | + |
| 33 | +publishing { |
| 34 | + publications { |
| 35 | + maven(MavenPublication) { |
| 36 | + from components.versionCatalog |
| 37 | + } |
| 38 | + } |
| 39 | +} |
0 commit comments