blob: fe22e360528e34aec51c7d400b577a4cdf73c371 [file] [log] [blame]
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.3'
}
}
subprojects {
repositories {
mavenCentral()
// maven {
// url 'https://oss.sonatype.org/content/repositories/snapshots/'
// }
// mavenLocal()
}
}
ext {
minSdkVersion = 8
compileSdkVersion = 25
targetSdkVersion = compileSdkVersion
buildToolsVersion = '25.0.2'
javaVersion = JavaVersion.VERSION_1_7
GROUP = 'com.squareup.leakcanary'
VERSION_NAME = "1.6-SNAPSHOT"
POM_PACKAGING = "pom"
POM_DESCRIPTION= "Leak Canary"
POM_URL="http://github.com/square/leakcanary/"
POM_SCM_URL="http://github.com/square/leakcanary/"
POM_SCM_CONNECTION="scm:git:https://github.com/square/leakcanary.git"
POM_SCM_DEV_CONNECTION="scm:git:git@github.com:square/leakcanary.git"
POM_LICENCE_NAME="The Apache Software License, Version 2.0"
POM_LICENCE_URL="http://www.apache.org/licenses/LICENSE-2.0.txt"
POM_LICENCE_DIST="repo"
POM_DEVELOPER_ID="square"
POM_DEVELOPER_NAME="Square, Inc."
}