-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.gradle
67 lines (52 loc) · 1.04 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
apply plugin: 'android-library'
apply plugin: 'maven'
version = "0.0.1"
group = "com.livefyre"
repositories {
mavenLocal()
}
task wrapper(type: Wrapper) {
gradleVersion = '1.6'
}
android {
compileSdkVersion 17
buildToolsVersion "17.0"
defaultConfig {
minSdkVersion 8
}
}
subprojects {
delegate.tasks.each {task ->
task.enabled = false;
}
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.5.4'
}
}
dependencies {
compile files('libs/android-async-http-1.4.2.jar')
}
uploadArchives {
repositories {
mavenDeployer {
repository url: 'file://' + new File(System.getProperty('user.home'), '.m2/repository').absolutePath
}
}
}
task install(dependsOn: uploadArchives)
task sourceJar(type: Jar) {
classifier = 'sources'
from android.sourceSets.main.allSource
}
configurations{
sourceArchives
}
artifacts{
sourceArchives sourceJar
}
install.configuration = configurations.sourceArchives