RoboSwag/build.gradle

47 lines
1.2 KiB
Groovy

buildscript {
ext.kotlin_version = '1.3.11'
repositories {
google()
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'de.aaschmid:gradle-cpd-plugin:1.1'
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.0.0-RC12"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "http://dl.bintray.com/touchin/touchin-tools" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
ext.buildScriptsDir = "$rootDir/BuildScripts"
versions = [
compileSdk : 28,
appcompat : '1.0.2',
androidx : '1.0.0',
material : '1.0.0',
lifecycle : '2.0.0',
dagger : '2.17',
retrofit : '2.4.0',
rxJava : '2.2.2',
rxAndroid : '2.1.0',
crashlytics : '2.9.5',
location : '16.0.0',
coreKtx : '1.0.1',
yandex_mapkit: '3.4.0',
google_maps : '16.1.0'
]
}