-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle.kts
56 lines (46 loc) · 1.13 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
plugins {
id("java")
id("org.jetbrains.intellij.platform") version "2.0.1"
}
repositories {
mavenCentral()
intellijPlatform {
defaultRepositories()
}
}
dependencies {
// See https://github.com/JetBrains/intellij-platform-gradle-plugin
intellijPlatform {
intellijIdeaCommunity("2024.2.1")
bundledPlugin("com.intellij.java")
bundledPlugin("org.jetbrains.kotlin")
pluginVerifier()
zipSigner()
instrumentationTools()
testFramework(TestFrameworkType.Platform)
testFramework(TestFrameworkType.Plugin.Java)
}
testImplementation("junit:junit:4.13.2")
}
intellijPlatform {
pluginConfiguration {
id = "org.jusecase.jte-intellij"
name = "jte"
version = "2.2.1"
}
projectName = "jte-intellij"
publishing {
token = System.getenv("ORG_GRADLE_PROJECT_intellijPublishToken")
}
pluginVerification {
ides {
ide("2024.2.1")
}
}
}
tasks {
patchPluginXml {
untilBuild = provider { null }
}
}