Skip to content

Commit

Permalink
Update plugin versions and remove unecessary configs
Browse files Browse the repository at this point in the history
  • Loading branch information
MituuZ committed Jan 31, 2024
1 parent 38fa035 commit df3337e
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id("java")
id("org.jetbrains.kotlin.jvm") version "1.9.0"
id("org.jetbrains.intellij") version "1.16.1"
id("org.jetbrains.kotlin.jvm") version "1.9.22"
id("org.jetbrains.intellij") version "1.17.0"
}

group = "com.mituuz"
Expand All @@ -23,25 +22,17 @@ tasks.test {
// Configure Gradle IntelliJ Plugin
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.3.2")
type.set("IC") // Target IDE Platform

version.set("2023.3.3")
plugins.set(listOf(/* Plugin Dependencies */))
}

tasks {
// Set the JVM compatibility versions
withType<JavaCompile> {
sourceCompatibility = "17"
targetCompatibility = "17"
}
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.jvmTarget = "17"
}

patchPluginXml {
sinceBuild.set("231")
untilBuild.set("233.*")
sinceBuild.set("233")
}

signPlugin {
Expand All @@ -53,4 +44,4 @@ tasks {
publishPlugin {
token.set(System.getenv("PUBLISH_TOKEN"))
}
}
}

0 comments on commit df3337e

Please sign in to comment.