2026-04-10 22:42:08 +02:00
|
|
|
import org.jetbrains.intellij.platform.gradle.extensions.intellijPlatform
|
|
|
|
|
|
2020-06-30 10:07:22 +02:00
|
|
|
rootProject.name = "IntelliJ Platform Plugin Template"
|
2024-08-20 21:08:56 +02:00
|
|
|
|
2026-04-13 20:49:44 +02:00
|
|
|
pluginManagement {
|
|
|
|
|
plugins {
|
|
|
|
|
id("org.jetbrains.kotlin.jvm") version "2.1.20"
|
|
|
|
|
id("org.jetbrains.changelog") version "2.5.0"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-20 21:08:56 +02:00
|
|
|
plugins {
|
2025-05-20 08:18:54 +02:00
|
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
|
2026-05-04 10:20:49 +02:00
|
|
|
id("org.jetbrains.intellij.platform.settings") version "2.16.0"
|
2026-04-10 22:42:08 +02:00
|
|
|
}
|
|
|
|
|
|
2026-04-13 09:23:12 +02:00
|
|
|
@Suppress("UnstableApiUsage")
|
2026-04-10 22:42:08 +02:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
// Configure all projects' repositories
|
|
|
|
|
repositories {
|
|
|
|
|
mavenCentral()
|
|
|
|
|
|
|
|
|
|
// IntelliJ Platform Gradle Plugin Repositories Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-repositories-extension.html
|
|
|
|
|
intellijPlatform {
|
|
|
|
|
defaultRepositories()
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-08-20 21:08:56 +02:00
|
|
|
}
|