-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
56 lines (46 loc) · 874 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.0'
}
}
apply plugin: 'idea'
apply plugin: 'kotlin'
defaultTasks 'test'
repositories {
mavenCentral()
}
dependencies {
compile 'org.jetbrains.kotlin:kotlin-stdlib:1.1.0'
compile 'org.jetbrains.kotlin:kotlin-runtime:1.1.0'
testCompile 'junit:junit:+'
}
sourceSets {
main {
kotlin {
srcDir 'src/main'
}
}
test {
kotlin {
srcDir 'src/test'
}
}
}
idea.module {
name = "parserCombinators"
sourceDirs += file('src/main')
testSourceDirs += file('src/test')
}
task setup {
dependsOn ideaModule
}
jar {
from sourceSets.main.allSource
}
test.finalizedBy(jar)
task wrapper(type: Wrapper) {
gradleVersion = '2.5'
}