mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
38 lines
691 B
Plaintext
38 lines
691 B
Plaintext
// Copyright 2000-2022 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") version "1.13.1"
|
|
}
|
|
|
|
group = "com.intellij.sdk"
|
|
version = "0.1.0"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
|
intellij {
|
|
version.set("2022.1.4")
|
|
type.set("PY")
|
|
plugins.set(listOf("Pythonid"))
|
|
downloadSources.set(false)
|
|
}
|
|
|
|
tasks {
|
|
buildSearchableOptions {
|
|
enabled = false
|
|
}
|
|
|
|
patchPluginXml {
|
|
version.set("${project.version}")
|
|
sinceBuild.set("221")
|
|
untilBuild.set("223.*")
|
|
}
|
|
}
|