forked from Kotlin/kotlin-fullstack-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (29 loc) · 898 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
group = 'org.jetbrains.demo.thinkter'
version = '0.0.1-SNAPSHOT'
subprojects { p ->
p.buildscript {
ext.kotlin_version = "1.1.51"
repositories {
mavenLocal()
jcenter()
maven { url "https://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.23"
}
}
}
subprojects {
ext.kotlin_version = "1.1.51"
ext.html_version = "0.6.6"
ext.ktor_version = "0.3.0"
ext.squash_version = "0.2.2"
repositories {
mavenLocal()
jcenter()
maven { url "https://dl.bintray.com/kotlin/kotlinx.html" }
maven { url "https://dl.bintray.com/kotlin/ktor" }
maven { url "https://dl.bintray.com/kotlin/squash" }
}
}