-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
48 lines (41 loc) · 1.15 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.21"
}
}
plugins {
id 'org.jetbrains.intellij' version '0.4.5'
id 'org.jetbrains.kotlin.jvm' version '1.3.21'
}
group 'dev.vinayshetty'
version '0.5'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation ("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.9.5'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
implementation('guru.nidi:graphviz-java:0.8.3'){
exclude group: "org.slf4j", module: "slf4j-log4j12"
exclude group: "log4j", module: "log4j"
}
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
intellij {
plugins 'org.jetbrains.kotlin:1.3.11-release-IJ2018.3-1'
version '2018.3'
pluginName 'State Arts'
updateSinceUntilBuild false
}