FastHub/build.gradle
Kosh f5d606bce5 this commit fixes #591 fixes #590 fixes #588 fixes #583 fixes #578
this commit also includes WIP trending module which is fully written in kotlin.
2017-05-31 23:28:37 +08:00

43 lines
1.2 KiB
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
butterKnifeVersion = '8.5.1'
icepickVersion = '3.2.0'
lombokVersion = '1.12.6'
supportVersion = "25.3.1"
gms = "10.2.6"
thirtyinchVersion = '0.8.0'
retrofit = '2.3.0'
junitVersion = '4.12'
mockitoVersion = '1.10.19'
assertjVersion = '2.5.0'
espresseVersion = '2.2.2'
requery = '1.3.2'
ext.kotlin_version = '1.1.2-4'
}
repositories {
jcenter()
maven { url "https://maven.google.com" }
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha2'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.novoda:gradle-build-properties-plugin:0.3'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
classpath 'io.fabric.tools:gradle:1.+'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}