Skip to content

Commit

Permalink
mps-messaging.jar doesn't exist anymore in MPS 2023.2
Browse files Browse the repository at this point in the history
  • Loading branch information
slisson committed Nov 6, 2023
1 parent fd9ecf9 commit 59200a2
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions build.gradle
Original file line number Diff line number Diff line change
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

0 comments on commit 59200a2

Please sign in to comment.