-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (38 loc) · 1.06 KB
/
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
apply plugin: 'kotlin'
apply plugin: 'java'
apply plugin: 'com.novoda.bintray-release'
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.novoda:bintray-release:0.5.0'
}
}
repositories {
jcenter()
mavenCentral()
maven {
url 'http://dl.bintray.com/ngsw-taro/maven'
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
testCompile 'com.taroid.knit:knit:0.1.2'
testCompile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
testCompile "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
testCompile ('junit:junit:4.11'){
exclude module: 'hamcrest-core'
}
testCompile 'org.hamcrest:hamcrest-all:1.3'
}
publish {
userOrg = 'youta1119'
groupId = 'com.github.youta1119'
artifactId = 'either-kotlin'
publishVersion = '0.4'
desc = 'Implementation of Either with kotlin'
website = 'https://github.com/youta1119/either-kotlin'
}