mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-17 11:19:15 +00:00
44 lines
764 B
Groovy
44 lines
764 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:1.3.1'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
version = "1.0.0-SNAPSHOT"
|
|
|
|
tasks.withType(JavaCompile) {
|
|
sourceCompatibility = "1.7"
|
|
targetCompatibility = "1.7"
|
|
}
|
|
}
|
|
|
|
// dependency versions for all sub modules
|
|
ext {
|
|
// regular
|
|
buildTools = "22.0.1"
|
|
compileSdk = 22
|
|
minSdk = 14
|
|
targetSdk = 22
|
|
|
|
support = "22.1.1"
|
|
play_services = "7.3.0"
|
|
|
|
// testing - jvm
|
|
junit = "4.12"
|
|
mockito = "1.9.5"
|
|
|
|
// testing - ui
|
|
test = "0.2"
|
|
espresso = "2.1"
|
|
} |