mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
39 lines
615 B
Plaintext
39 lines
615 B
Plaintext
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
|
|
|
plugins {
|
|
id("java")
|
|
id("org.jetbrains.intellij.platform") version "2.5.0"
|
|
}
|
|
|
|
group = "org.intellij.sdk"
|
|
version = "2.0.0"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
|
|
intellijPlatform {
|
|
defaultRepositories()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
intellijPlatform {
|
|
intellijIdeaCommunity("2024.2.6")
|
|
}
|
|
}
|
|
|
|
intellijPlatform {
|
|
buildSearchableOptions = false
|
|
|
|
pluginConfiguration {
|
|
ideaVersion {
|
|
sinceBuild = "242"
|
|
}
|
|
}
|
|
pluginVerification {
|
|
ides {
|
|
recommended()
|
|
}
|
|
}
|
|
}
|