-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (29 loc) · 882 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.21'
id("io.gitlab.arturbosch.detekt").version("1.2.2")
}
group 'ru.santaev'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-compiler-embeddable', version: '1.3.61'
implementation "com.github.ajalt:clikt:2.3.0"
implementation 'io.github.microutils:kotlin-logging:1.7.7'
implementation 'org.slf4j:slf4j-simple:1.7.26'
testImplementation 'junit:junit:4.12'
testImplementation 'org.hamcrest:hamcrest-library:1.3'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
detekt {
config = files("config/detekt/detekt.yml")
baseline = file("config/detekt/baseline.xml")
}