-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
72 lines (61 loc) · 1.54 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
70
71
72
plugins {
id 'java'
//id 'org.jetbrains.intellij' version '0.4.16'
id 'org.jetbrains.intellij.platform' version '2.0.1'
/*id("org.jetbrains.intellij.platform.migration") version "2.0.1"*/
}
group 'io.github.tia-ru'
version '1.1'
repositories {
mavenCentral()
intellijPlatform {
defaultRepositories()
}
}
dependencies {
implementation 'com.google.code.findbugs:jsr305:3.0.2'
//testImplementation 'junit:junit:4.12'
intellijPlatform {
intellijIdeaCommunity('2023.1')
bundledPlugin 'com.intellij.java'
bundledPlugin 'com.intellij.properties'
instrumentationTools()
}
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
/*intellij {
//version '2020.2'
//version '2019.2.4'
type 'IC'
//type 'IU'
downloadSources = true
//plugins = ['properties', 'java', 'Spring']
plugins = ['properties', 'java']
runIde{
jvmArgs '--add-exports=java.base/jdk.internal.vm=ALL-UNNAMED'
}
}*/
/*patchPluginXml {
//sinceBuild 'IC-202'
sinceBuild 'IC-192'
untilBuild null
*//*changeNotes """
Add change notes here.<br>
<em>most HTML tags may be used</em>
"""*//*
}*/
java {
sourceCompatibility='17'
targetCompatibility='17'
}
intellijPlatform {
pluginConfiguration {
ideaVersion {
//sinceBuild 'IC-192'
//sinceBuild '223.7571.182'
sinceBuild = '231'
untilBuild = provider { null }
}
}
}
runIde.jvmArgs += "-XX:+UnlockDiagnosticVMOptions"