forked from xfumihiro/ViewInspector
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
54 lines (48 loc) · 1.03 KB
/
build.gradle
File metadata and controls
54 lines (48 loc) · 1.03 KB
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
45
46
47
48
49
50
51
52
53
54
configure(subprojects.findAll { it.name != 'sample' }) {
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
classpath 'org.aspectj:aspectjtools:1.8.6'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.7'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.3.1'
}
}
repositories {
jcenter()
}
group = GROUP
version = VERSION_NAME
}
ext {
compileSdkVersion = 21
buildToolsVersion = '23.0.1'
pomConfig = {
name POM_NAME
description 'test description'
url POM_URL
scm {
url POM_SCM_URL
connection POM_SCM_CONNECTION
developerConnection POM_SCM_DEV_CONNECTION
}
licenses {
license {
name POM_LICENCE_NAME
url POM_LICENCE_URL
Distribution POM_LICENCE_DIST
}
}
developers {
developer {
id POM_DEVELOPER_ID
name POM_DEVELOPER_NAME
}
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}