forked from mbarrben/android-stickyheaderswipelistview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
92 lines (70 loc) · 2.29 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
buildscript {
group = GROUP
version = VERSION_NAME
repositories {
maven { url 'http://clinker.47deg.com/nexus/content/groups/public' }
maven { url "${System.env.HOME}/.m2/repository" }
}
dependencies {
classpath 'com.android.tools.build:gradle:0.7.+'
classpath 'com.github.dcendents:android-maven-plugin:1.0'
}
}
subprojects {
group = GROUP
version = VERSION_NAME
apply plugin: 'android-library'
apply plugin: 'android-maven'
android {
compileSdkVersion 19
buildToolsVersion '19.0.0'
defaultConfig {
targetSdkVersion 19
}
lintOptions {
abortOnError false
}
}
sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6
repositories {
maven { url 'http://clinker.47deg.com/nexus/content/groups/public' }
maven { url 'https://clinker.47deg.com/nexus/content/repositories/releases' }
maven { url "${System.env.HOME}/.m2/repository" }
}
dependencies {
compile 'com.android.support:appcompat-v7:19.0.+'
}
uploadArchives {
repositories {
mavenDeployer {
repository(url: 'http://clinker.47deg.com/nexus/content/repositories/snapshots/') {
authentication(userName: mavenDeployer, password: mavenDeployerPassword)
}
pom.project {
packaging POM_PACKAGING
description POM_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
}
}
}
}
}
}
}