forked from ReKotlin/rekotlin-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (32 loc) · 1.01 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.3.31'
dokka_version = '0.9.18'
rekotlin_version = '1.0.3'
gradle_bintray_plugin_version = '1.8.4'
android_tools_build_gradle_version = '3.4.2'
junit_version = '4.12'
mockito_core_version = '2.28.2'
androidx_version = '1.0.2'
kluent_version = '1.49'
}
repositories {
google()
jcenter()
mavenLocal()
}
dependencies {
classpath "com.android.tools.build:gradle:${android_tools_build_gradle_version}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlin_version}"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:${dokka_version}"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:${gradle_bintray_plugin_version}"
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}