-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (42 loc) · 1.17 KB
/
build.gradle
File metadata and controls
50 lines (42 loc) · 1.17 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
plugins {
id "java"
id "org.jetbrains.intellij" version "1.16.0"
}
repositories {
mavenCentral()
maven { url "https://www.jetbrains.com/intellij-repository/releases" }
maven { url "https://www.jetbrains.com/intellij-repository/snapshots" }
}
intellij {
version = "2022.2"
// version = "2024.1"
plugins = ['java']
// plugins = ['java', 'org.jetbrains.java.decompiler']
pluginName = "CodeSpy"
updateSinceUntilBuild = false
}
dependencies {
// implementation('com.jetbrains.intellij.java:java-decompiler:241.15989.150') {
// transitive = false
// }
implementation 'com.jetbrains.intellij.java:java-decompiler-engine:241.15989.150'
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
//patchPluginXml {
// sinceBuild = "222"
// untilBuild = "241.*"
//}
signPlugin {
certificateChain = System.getenv("CERTIFICATE_CHAIN")
privateKey = System.getenv("PRIVATE_KEY")
password = System.getenv("PRIVATE_KEY_PASSWORD")
}
publishPlugin {
token = System.getenv("PUBLISH_TOKEN")
}