-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
69 lines (56 loc) · 1.42 KB
/
build.gradle
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
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'java'
id 'org.jetbrains.intellij.platform' version '2.0.1'
}
group 'com.daynight'
version '2.0.0'
sourceCompatibility = JavaVersion.VERSION_21
dependencies {
intellijPlatform {
intellijIdeaCommunity '2024.2.0.1'
instrumentationTools()
bundledPlugin 'com.intellij.java'
}
compileOnly 'org.projectlombok:lombok:1.18.34'
annotationProcessor 'org.projectlombok:lombok:1.18.34'
implementation 'com.github.lgooddatepicker:LGoodDatePicker:11.2.1'
testImplementation 'junit:junit:4.13.2'
}
intellijPlatform {
pluginConfiguration {
version = project.version
changeNotes =
"""
Make compatible with InteliJ products 24.2<br>
Get rid of deprecated API usage<br>
Make working with Java 21<br>
Support dynamic loading of plugin<br>
""".stripIndent()
ideaVersion {
// Don't patch `untilBuild` version.
untilBuild = providers.provider({ null })
sinceBuild = "242.2"
}
}
}
runIde {
jvmArgs = [
"-XX:+UnlockDiagnosticVMOptions"
]
}
repositories {
mavenCentral()
intellijPlatform {
defaultRepositories()
}
}
jar {
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}