Skip to content

Commit

Permalink
build: remove old configs
Browse files Browse the repository at this point in the history
Some configs related to the old intellij graddle plugin were still there.
  • Loading branch information
pcha committed Feb 2, 2025
1 parent d7771a0 commit 1f75c2c
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,13 @@ dependencies {
}
}

// Configure Gradle IntelliJ Plugin
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
//intellij {
// version.set("2024.1.7")
// type.set("IC") // Target IDE Platform
//
// plugins.set(listOf(/* Plugin Dependencies */))
//}

intellijPlatform {
publishing {
token = providers.gradleProperty("intellijPlatformPublishingToken")
channels = listOf(providers.gradleProperty("intellijPlatformPublishingChannel").getOrElse("default"))
channels = providers.gradleProperty("intellijPlatformPublishingChannel")
.map { listOf(it) }
.orElse(listOf("default"))
// channels = listOf(providers.gradleProperty("intellijPlatformPublishingChannel").getOrElse("default"))
}
}

Expand Down Expand Up @@ -103,11 +97,6 @@ tasks {
// privateKey.set(System.getenv("PRIVATE_KEY"))
// password.set(System.getenv("PRIVATE_KEY_PASSWORD"))
// }

publishPlugin {
token.set(System.getenv("INTELLIJ_MARKETPLACE_TOKEN"))
channels.set(listOf(System.getenv("MARKETPLACE_CHANNEL")))
}
}
tasks.getByName<Test>("test") {
useJUnitPlatform()
Expand Down

0 comments on commit 1f75c2c

Please sign in to comment.