-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
39 lines (35 loc) · 971 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
buildscript {
ext {
kotlinVersion = '1.3.0'
}
repositories {
maven {
url "http://dl.bintray.com/kotlin/kotlin-eap-1.1"
}
jcenter()
}
dependencies {
classpath(
"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion",
'com.bmuschko:gradle-nexus-plugin:2.3.1',
'net.researchgate:gradle-release:2.3.4',
'com.github.ben-manes:gradle-versions-plugin:0.12.0',
)
}
}
apply plugin: "kotlin"
apply plugin: "maven"
apply from: 'publish.gradle'
apply plugin: 'com.github.ben-manes.versions'
group = "com.github.andrewoma.kommon"
repositories {
maven {
url "http://dl.bintray.com/kotlin/kotlin-eap-1.1"
}
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
testCompile 'junit:junit:4.12'
}