-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (31 loc) · 785 Bytes
/
build.gradle
File metadata and controls
39 lines (31 loc) · 785 Bytes
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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.6.5'
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
group 'name.admitriev.jhelper'
version '0.19.1'
repositories {
mavenCentral()
}
sourceSets {
main.java.srcDirs = ['src']
main.resources.srcDirs = ['resources']
}
runIde {
jvmArgs '--add-exports', 'java.base/jdk.internal.vm=ALL-UNNAMED'
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile fileTree(dir: 'lib', include: 'chelper.jar')
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2021.1.2'
updateSinceUntilBuild false
type 'CL'
setPlugins('com.intellij.clion', 'com.intellij.cidr.lang')
}