mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-18 11:49:09 +00:00
47 lines
904 B
Groovy
47 lines
904 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.1.3'
|
|
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.5.0'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
version = "1.0.0-SNAPSHOT"
|
|
|
|
tasks.withType(JavaCompile) {
|
|
sourceCompatibility = JavaVersion.VERSION_1_7
|
|
targetCompatibility = JavaVersion.VERSION_1_7
|
|
}
|
|
}
|
|
|
|
// dependency versions for all sub modules
|
|
ext {
|
|
// regular
|
|
buildTools = "22.0.1"
|
|
compileSdk = 22
|
|
minSdk = 14
|
|
targetSdk = 22
|
|
|
|
support = "22.2.1"
|
|
play_services = "7.3.0"
|
|
|
|
license_dialog = "1.8.0"
|
|
|
|
// testing - jvm
|
|
junit = "4.12"
|
|
mockito = "1.9.5"
|
|
|
|
// testing - ui
|
|
test = "0.2"
|
|
espresso = "2.1"
|
|
} |