Skip to content

Commit

Permalink
Merge pull request #12 from mbeddr/mps/2023.2
Browse files Browse the repository at this point in the history
Publish MPS 2023.2
  • Loading branch information
slisson authored Nov 23, 2023
2 parents 9894fe2 + 59200a2 commit e773270
Showing 1 changed file with 21 additions and 21 deletions.
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

0 comments on commit e773270

Please sign in to comment.