Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import org.jetbrains.grammarkit.tasks.GenerateParserTask

plugins {
id("java")
id("org.jetbrains.kotlin.jvm") version "1.9.25"
id("org.jetbrains.kotlin.jvm") version "2.2.21"
id("org.jetbrains.intellij.platform") version "2.9.0"
id("org.jetbrains.grammarkit") version "2022.3.2.2"
}
Expand Down Expand Up @@ -47,17 +47,19 @@ sourceSets {
// Configure IntelliJ Platform Dependencies
dependencies {
intellijPlatform {
intellijIdeaCommunity("2024.2.5")
intellijIdea("2024.2.5") {
type.set(org.jetbrains.intellij.platform.gradle.IntelliJPlatformType.IntellijIdeaCommunity)
}
bundledPlugin("com.intellij.java")

pluginVerifier()
zipSigner()
}

testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.13.4")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:6.0.0")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:6.0.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.13.4")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.13.4")
testImplementation("org.junit.jupiter:junit-jupiter-api:6.0.0")
testImplementation("org.junit.jupiter:junit-jupiter-params:6.0.0")
testImplementation("org.mockito:mockito-core:5.20.0")
testImplementation("org.mockito:mockito-junit-jupiter:5.20.0")
}
Expand Down Expand Up @@ -111,8 +113,8 @@ tasks {
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
compilerOptions {
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21
languageVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_1_9
apiVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_1_9
languageVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_2_0
apiVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_2_0
}
dependsOn(generatePhelLexer, generatePhelParser)
}
Expand Down Expand Up @@ -141,8 +143,8 @@ tasks {

pluginVerification {
ides {
ide("IC", "2024.2.5")
ide("IC", "2024.3.1")
create("IC", "2024.2.5")
create("IC", "2024.3.1")
}
}

Expand Down