-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (39 loc) · 1.24 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
group 'com.lunivore'
version '0.2.1-20170825'
buildscript {
ext.kotlinVersion = '1.1.1'
ext.junitJupiterVersion = '5.0.0-M4'
ext.mockitoVersion = "1.10.19"
ext.hamcrestVersion = "1.3"
ext.log4jVersion = '2.8.2'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.junit.platform:junit-platform-gradle-plugin:1.0.0-M4"
}
}
apply plugin: 'kotlin'
sourceSets {
exampleApp {
kotlin {
srcDir file('src/exampleApp/kotlin')
}
}
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
exampleAppCompile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
compile "org.apache.logging.log4j:log4j-api:$log4jVersion"
compile "org.apache.logging.log4j:log4j-core:$log4jVersion"
testCompile sourceSets.exampleApp.output
testCompile("org.mockito:mockito-all:${mockitoVersion}")
testCompile("org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}")
testRuntime("org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}")
testCompile("org.hamcrest:hamcrest-all:${hamcrestVersion}")
}