forked from square/leakcanary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (37 loc) · 1.05 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
subprojects {
repositories {
mavenCentral()
// maven {
// url 'https://oss.sonatype.org/content/repositories/snapshots/'
// }
// mavenLocal()
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
}
}
}
ext {
minSdkVersion = 8
compileSdkVersion = 21
targetSdkVersion = compileSdkVersion
buildToolsVersion = '21.1.2'
javaVersion = JavaVersion.VERSION_1_7
GROUP = 'com.squareup.leakcanary'
VERSION_NAME = "1.4-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."
}