-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (31 loc) · 1011 Bytes
/
build.gradle
File metadata and controls
36 lines (31 loc) · 1011 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
32
33
34
35
36
group = 'todoapp'
version = '0.0.1-SNAPSHOT'
ext.kotlin_version = '1.2.41'
ext.ktor_version = '0.9.0'
ext.html_version = "0.6.6"
ext.react_version = "16.4.0-pre.32-kotlin-$kotlin_version"
ext.react_dom_version = "16.4.0-pre.32-kotlin-$kotlin_version"
ext.react_router_dom_version = "4.2.2-pre.32-kotlin-$kotlin_version"
ext.extensions_version = "1.0.1-pre.32-kotlin-$kotlin_version"
ext.coroutines_version = "0.23.3"
subprojects { p ->
p.buildscript {
repositories {
mavenLocal()
jcenter()
maven { url "http://dl.bintray.com/kotlin/kotlin-eap" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-frontend-plugin:0.0.31"
}
}
}
subprojects {
repositories {
mavenLocal()
jcenter()
maven { url "http://dl.bintray.com/kotlin/kotlinx.html" }
maven { url "http://dl.bintray.com/kotlin/ktor" }
}
}