-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
43 lines (35 loc) · 1.08 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
group 'ua.com.lavi.ham.gossip'
buildscript {
ext.kotlin_version = '1.2.71'
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.1'
}
}
apply plugin: 'idea'
apply plugin: 'kotlin'
apply plugin: 'org.junit.platform.gradle.plugin'
repositories {
mavenCentral()
}
idea {
module {
outputDir file('build/classes/main')
testOutputDir file('build/classes/test')
}
}
dependencies {
compile 'ch.qos.logback:logback-classic:1.2.3'
compile 'com.fasterxml.jackson:jackson-datatype-json-org:1.8.0'
compile "com.fasterxml.jackson.module:jackson-module-kotlin:2.9.+"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testCompile('org.junit.jupiter:junit-jupiter-api:5.0.1')
testCompile('org.junit.jupiter:junit-jupiter-engine:5.0.1')
}