-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
39 lines (31 loc) · 1015 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
group 'com.jetbrains.circlet'
buildscript {
apply from: 'versions.gradle'
repositories {
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
mavenCentral()
jcenter()
}
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'kotlin'
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
compile "io.reactivex:rxkotlin:$rxkotlin_version"
compile "com.github.krukow:clj-ds:0.0.4"
compile 'io.reactivex:rxkotlin:0.55.0'
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
testCompile group: 'junit', name: 'junit', version: junit_version
}
}