Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish MPS 2023.2 #12

Merged
merged 2 commits into from
Nov 23, 2023
Merged
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
42 changes: 21 additions & 21 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ plugins {

import de.undercouch.gradle.tasks.download.Download

ext.mpsMajor = '2022.3'
ext.mpsBuild = '2022.3'
ext.mpsMajor = '2023.2'
ext.mpsBuild = '2023.2'

def mpsDownloadDir = new File(project.buildDir, "MPS-${mpsBuild}")
def mpsDownloadFile = new File(mpsDownloadDir, "MPS-${mpsBuild}.zip")
Expand Down Expand Up @@ -178,18 +178,18 @@ task packageMpsConsoleIdeCommandsRuntimeSources(type: Jar, dependsOn: unzipMPS)
from zipTree("$mpsUnpackedDir/plugins/mps-console/lang/jetbrains.mps.console.ideCommands.runtime-src.jar")
}

task packageMpsMessaging(type: Jar, dependsOn: unzipMPS) {
baseName 'mps-messaging'
from zipTree("$mpsUnpackedDir/lib/mps-messaging.jar")
}

task packageMpsMessagingSources(type: Jar, dependsOn: unzipMPS) {
baseName 'mps-messaging'
classifier 'sources'
from(zipTree("$mpsUnpackedDir/lib/MPS-src.zip")) {
include 'jetbrains/mps/messages/**'
}
}
//task packageMpsMessaging(type: Jar, dependsOn: unzipMPS) {
// baseName 'mps-messaging'
// from zipTree("$mpsUnpackedDir/lib/mps-messaging.jar")
//}
//
//task packageMpsMessagingSources(type: Jar, dependsOn: unzipMPS) {
// baseName 'mps-messaging'
// classifier 'sources'
// from(zipTree("$mpsUnpackedDir/lib/MPS-src.zip")) {
// include 'jetbrains/mps/messages/**'
// }
//}

task packageMpsModelchecker(type: Jar, dependsOn: unzipMPS) {
baseName 'mps-modelchecker'
Expand Down Expand Up @@ -368,13 +368,13 @@ publishing {
artifact packageMpsConsoleIdeCommandsRuntime
artifact packageMpsConsoleIdeCommandsRuntimeSources
}
mpsMessaging(MavenPublication) {
groupId 'com.jetbrains'
artifactId 'mps-messaging'
version mpsBuild
artifact packageMpsMessaging
artifact packageMpsMessagingSources
}
// mpsMessaging(MavenPublication) {
// groupId 'com.jetbrains'
// artifactId 'mps-messaging'
// version mpsBuild
// artifact packageMpsMessaging
// artifact packageMpsMessagingSources
// }
mpsModelchecker(MavenPublication) {
groupId 'com.jetbrains'
artifactId 'mps-modelchecker'
Expand Down