-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
80 lines (66 loc) · 2.27 KB
/
build.gradle.kts
File metadata and controls
80 lines (66 loc) · 2.27 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
plugins {
id("java")
id("org.jetbrains.intellij.platform") version "2.6.0"
id("checkstyle")
}
group = "com.zhongan"
version = "3.1.0"
repositories {
mavenCentral()
intellijPlatform {
defaultRepositories()
}
}
dependencies {
intellijPlatform {
intellijIdeaCommunity("2022.3")
bundledPlugin("com.intellij.java")
bundledPlugin("org.jetbrains.idea.maven")
bundledPlugin("Git4Idea")
bundledPlugin("org.jetbrains.plugins.terminal")
testFramework(TestFrameworkType.Platform)
}
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.2")
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2")
implementation("com.squareup.okhttp3:okhttp:4.10.0")
implementation("com.squareup.okhttp3:okhttp-sse:4.10.0")
implementation("com.vladsch.flexmark:flexmark-all:0.64.8")
implementation("org.apache.commons:commons-text:1.10.0")
implementation("io.github.bonede:tree-sitter:0.22.6")
implementation("io.github.bonede:tree-sitter-java:0.21.0a")
implementation("io.github.bonede:tree-sitter-python:0.21.0a")
implementation("io.github.bonede:tree-sitter-go:0.21.0a")
implementation("com.knuddels:jtokkit:1.0.0")
implementation("org.apache.maven.shared:maven-shared-utils:3.4.2")
compileOnly("com.puppycrawl.tools:checkstyle:10.9.1")
testImplementation("org.mockito:mockito-core:5.7.0")
testImplementation(libs.junit)
}
tasks {
withType<JavaCompile> {
sourceCompatibility = "17"
targetCompatibility = "17"
options.encoding = "UTF-8"
}
patchPluginXml {
sinceBuild.set("223")
untilBuild.set("252.*")
pluginDescription.set(provider { file("description.html").readText() })
}
signPlugin {
certificateChain.set(System.getenv("CERTIFICATE_CHAIN"))
privateKey.set(System.getenv("PRIVATE_KEY"))
password.set(System.getenv("PRIVATE_KEY_PASSWORD"))
}
publishPlugin {
token.set(System.getenv("PUBLISH_TOKEN"))
}
runIde {
systemProperty("devpilot.env", "test")
}
checkstyle {
configFile = rootProject.file("checkstyle.xml")
maxWarnings = 0
}
}