-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (35 loc) · 962 Bytes
/
build.gradle
File metadata and controls
42 lines (35 loc) · 962 Bytes
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
buildscript {
ext.kotlin_version = '1.2.20'
ext.slf4j_version = '1.6.1'
ext.apache_commons_lang_version = '3.5'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
group 'cse.study.search'
version '1.0-RELEASE'
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: 'eclipse'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "org.slf4j:slf4j-simple:$slf4j_version"
compile "org.apache.commons:commons-lang3:$apache_commons_lang_version"
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile 'org.spockframework:spock-core:1.1-groovy-2.4-rc-4'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}