Skip to content

Commit ec85cfb

Browse files
committed
feat(build): add support for platform version 223 #257
- Add conditional dependency on `org.jetbrains:annotations` for platform version 223. - Update GitHub workflow to include platform version 223 in the matrix. - Rename and update files to reflect the new platform version 223.
1 parent 548919f commit ec85cfb

File tree

20 files changed

+7
-2
lines changed

20 files changed

+7
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
platform-version: [233, 241 ]
19+
platform-version: [223, 233, 241 ]
2020
env:
2121
ORG_GRADLE_PROJECT_platformVersion: ${{ matrix.platform-version }}
2222

build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,11 @@ configure(
177177

178178
testOutput(sourceSets.test.get().output.classesDirs)
179179

180+
if (platformVersion == 223) {
181+
// https://mvnrepository.com/artifact/org.jetbrains/annotations
182+
implementation("org.jetbrains:annotations:26.0.1")
183+
}
184+
180185
intellijPlatform {
181186
testFramework(TestFrameworkType.Bundled)
182187
}

0 commit comments

Comments
 (0)