-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (25 loc) · 792 Bytes
/
Copy pathbuild.gradle
File metadata and controls
31 lines (25 loc) · 792 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
group 'me.mx1700'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.1.0-beta-22'
repositories {
//mavenCentral()
maven { url 'http://dl.bintray.com/kotlin/kotlin-eap-1.1/'}
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'java'
apply plugin: 'kotlin'
sourceCompatibility = 1.6
repositories {
//mavenCentral()
maven { url 'http://dl.bintray.com/kotlin/kotlin-eap-1.1/'}
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testCompile group: 'junit', name: 'junit', version: '4.11'
}