Skip to content

Commit a6e5ca5

Browse files
authored
Add disambiguator to gateway artifact name (#3402)
1 parent 0b36e0c commit a6e5ca5

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ assertJ = "3.20.2" # Upgrading leads to SAM errors: https://youtrack.jetbrains.c
44
awsSdk = "2.17.292"
55
commonmark = "0.17.1"
66
detekt = "1.21.0"
7-
intellijGradle = "1.10.0-SNAPSHOT"
7+
intellijGradle = "1.10.0"
88
intellijRemoteRobot = "0.11.16"
99
jackson = "2.13.3"
1010
jacoco = "0.8.8"

jetbrains-gateway/build.gradle.kts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,16 @@ tasks.prepareSandbox {
102102
}
103103
}
104104

105+
tasks.buildPlugin {
106+
val classifier = if (archiveClassifier.get().isNullOrBlank()) {
107+
"GW"
108+
} else {
109+
"${archiveClassifier.get()}-GW"
110+
}
111+
112+
archiveClassifier.set(classifier)
113+
}
114+
105115
val publishToken: String by project
106116
val publishChannel: String by project
107117
tasks.publishPlugin {

0 commit comments

Comments
 (0)