Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build_mpsqa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5

- name: Set up JDK
uses: actions/setup-java@v4
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5
with:
java-version: 17
distribution: temurin

- name: Set up Gradle
uses: gradle/actions/setup-gradle@v4
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5

- name: Build MPS-QA and migrate
run: |
Expand Down
24 changes: 12 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import de.itemis.mps.gradle.downloadJBR.*
import de.itemis.mps.gradle.tasks.*

plugins {
id 'de.itemis.mps.gradle.common' version '1.29.1.+'
id 'download-jbr' version '1.29.1.+'
id 'de.itemis.mps.gradle.common' version '1.29.2.+'
id 'download-jbr' version '1.29.2.+'
id 'base'
id 'maven-publish'
id 'co.riiid.gradle' version '0.4.2'

id 'de.itemis.mps.gradle.launcher' version '2.5.2.+'
id 'de.itemis.mps.gradle.launcher' version '2.7.0.+'

id 'org.cyclonedx.bom' version '2.2.0'
id 'org.cyclonedx.bom' version '3.0.2'
}

ext.jbrVers = '21.0.6-b895.109'
Expand Down Expand Up @@ -64,21 +64,21 @@ configurations {
dependencies {
// Use the following dependency for published releases:
// mps 'com.jetbrains:mps:2025.1'
mps 'com.jetbrains.mps:mps-prerelease:251.23774.10102'
mps 'com.jetbrains.mps:mps-prerelease:253.28294.298'
antLib "org.apache.ant:ant-junit:1.10.15"
antLib "org.jacoco:org.jacoco.ant:0.8.13"
antLib "org.jacoco:org.jacoco.ant:0.8.14"

plantuml "net.sourceforge.plantuml:plantuml-asl:1.2025.2"
plantuml "net.sourceforge.plantuml:plantuml-asl:1.2025.10"

baseLib "org.apache.commons:commons-lang3:3.17.0"
baseLib "commons-cli:commons-cli:1.10.0"
baseLib "commons-io:commons-io:2.20.0"
baseLib "org.apache.commons:commons-lang3:3.19.0"
baseLib "commons-cli:commons-cli:1.11.0"
baseLib "commons-io:commons-io:2.21.0"

treemap "net.sf.jtreemap:jtreemap:1.1.3"
treemap "net.sf.jtreemap:ktreemap:1.1.0-atlassian-01"

def asmVersion = "9.8"
def jacocoVersion = "0.8.13"
def asmVersion = "9.9"
def jacocoVersion = "0.8.14"

jacoco "org.ow2.asm:asm:$asmVersion"
jacoco "org.ow2.asm:asm-commons:$asmVersion"
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=20f1b1176237254a6fc204d8434196fa11a4cfb387567519c61556e8710aed78
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
distributionSha256Sum=df67a32e86e3276d011735facb1535f64d0d88df84fa87521e90becc2d735444
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Loading