-
Notifications
You must be signed in to change notification settings - Fork 371
/
Copy pathbuild.gradle.kts
49 lines (38 loc) · 1.02 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
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
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.5")
bundledPlugin("com.intellij.java")
testFramework(TestFrameworkType.Plugin.Java)
}
testImplementation("junit:junit:4.13.2")
// workaround for <2024.3
// https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-faq.html#missing-opentest4j-dependency-in-test-framework
testImplementation("org.opentest4j:opentest4j:1.3.0")
}
intellijPlatform {
buildSearchableOptions = false
pluginConfiguration {
ideaVersion {
sinceBuild = "242"
}
}
pluginVerification {
ides {
recommended()
}
}
}