-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
33 lines (29 loc) · 960 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
buildscript {
ext.kotlin_version = '1.2.60'
repositories {
mavenLocal()
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'kotlin'
repositories {
mavenLocal()
jcenter()
maven { url 'https://dl.bintray.com/freewind/maven/' }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile 'github.freewind:xiaohe-char-decoder:0.5.0'
compile "org.apache.commons:commons-lang3:3.7"
compile "commons-io:commons-io:2.6"
testCompile "junit:junit:4.11"
testCompile 'org.assertj:assertj-core:3.9.0'
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
}
// gradle wrapper --gradle-version 4.8.1
// ./gradlew -version