This repository has been archived by the owner on May 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
57 lines (51 loc) · 1.84 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
buildscript {
ext {
kotlinVersion = '1.2.20'
kotlinxCoroutinesVersion = '0.21.2'
javaVersion = JavaVersion.VERSION_1_7
}
repositories {
jcenter()
maven { url 'https://maven.google.com' }
maven { url 'https://jitpack.io' }
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
maven { url "https://dl.bintray.com/jetbrains/markdown/" }
maven { url "https://dl.bintray.com/arrow-kt/arrow-kt/" }
maven { url "https://dl.bintray.com/macroing-org/CEL4J-Artifact/" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'io.arrow-kt:ank-gradle-plugin:0.7.1'
}
}
subprojects { project ->
apply plugin: 'com.jfrog.bintray'
bintray {
user = project.hasProperty('bintrayUser') ? project.property('bintrayUser') : System.getenv('BINTRAY_USER')
key = project.hasProperty('bintrayApiKey') ? project.property('bintrayApiKey') : System.getenv('BINTRAY_API_KEY')
configurations = ['archives']
pkg {
repo = 'arrow-kt'
name = POM_ARTIFACT_ID
userOrg = POM_DEVELOPER_ID
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/arrow-kt/ank.git'
}
}
}
allprojects {
ext {
ankGroup = 'io.arrow-kt'
ankVersion = '0.7.2-SNAPSHOT'
}
repositories {
jcenter()
maven { url 'https://maven.google.com' }
maven { url 'https://kotlin.bintray.com/kotlinx' }
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
maven { url "https://dl.bintray.com/arrow-kt/arrow-kt" }
maven { url "https://dl.bintray.com/jetbrains/markdown/" }
maven { url 'https://jitpack.io' }
}
}