Skip to content

Commit

Permalink
GH-8 Update to support the latest versions of IntelliJ IDEA
Browse files Browse the repository at this point in the history
Signed-off-by: Uladzislau <[email protected]>
  • Loading branch information
KUGDev committed Sep 5, 2024
1 parent 7895ff2 commit e8e1ef1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
14 changes: 9 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
/*
* Copyright (c) 2024 IBA Group.
*
* This program and the accompanying materials are made available under the terms of the
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Copyright Contributors to the Zowe Project
* Contributors:
* IBA Group
* Zowe Community
*/

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
Expand All @@ -22,8 +26,8 @@ plugins {
group = properties("pluginGroup").get()
version = properties("pluginVersion").get()
val kotestVersion = "5.9.1"
val mockkVersion = "1.13.11"
val junitVersion = ""
val mockkVersion = "1.13.12"
val junitVersion = "1.10.3"

repositories {
mavenCentral()
Expand All @@ -36,7 +40,7 @@ intellij {
// pluginsRepositories {
// custom("https://plugins.jetbrains.com/plugins/nightly/23257")
// }
plugins.set(listOf("org.jetbrains.plugins.textmate", "com.redhat.devtools.lsp4ij:0.0.2"))
plugins.set(listOf("org.jetbrains.plugins.textmate", "com.redhat.devtools.lsp4ij:0.4.0"))
}

dependencies {
Expand All @@ -47,7 +51,7 @@ dependencies {
// MockK
testImplementation("io.mockk:mockk:$mockkVersion")
// JUnit Platform (needed for Kotest)
testImplementation("org.junit.platform:junit-platform-launcher:1.10.2")
testImplementation("org.junit.platform:junit-platform-launcher:$junitVersion")
// ==========================

}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ org.gradle.caching = true
platformVersion = 2024.1

# SemVer format -> https://semver.org
pluginVersion = 0.0.1
pluginVersion = 0.0.2
pluginGroup = org.zowe

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 232
pluginUntilBuild = 241.*
pluginUntilBuild =

0 comments on commit e8e1ef1

Please sign in to comment.