-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
39 lines (31 loc) · 903 Bytes
/
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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.17'
}
group 'com.samujjwaal'
version '1.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.6.0'
// https://mvnrepository.com/artifact/com.squareup/javapoet
compile group: 'com.squareup', name: 'javapoet', version: '1.12.1'
// https://mvnrepository.com/artifact/com.typesafe/config
compile group: 'com.typesafe', name: 'config', version: '1.4.0'
}
test {
useJUnitPlatform()
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
plugins 'java'
version '2019.3.4'
}
patchPluginXml {
changeNotes """
Add change notes here.<br>
<em>most HTML tags may be used</em>"""
}