forked from survivingwithandroid/WeatherLib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
nexus_push.gradle
96 lines (83 loc) · 3.07 KB
/
nexus_push.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
90
91
92
93
94
95
96
apply plugin: 'maven'
def getRepositoryUsername() {
return hasProperty('nexusUsername') ? nexusUsername : ""
}
def getRepositoryPassword() {
return hasProperty('nexusPassword') ? nexusPassword : ""
}
def publishLocal() {
return hasProperty('local')
}
afterEvaluate { project ->
uploadArchives {
repositories {
mavenDeployer {
pom.artifactId = POM_ARTIFACT_ID
if(publishLocal()){
def localMavenRepo = 'file://' + new File(System.getProperty('user.home'), '.m2/repository').absolutePath
repository(url: localMavenRepo)
}
else {
if(VERSION_NAME.endsWith('-SNAPSHOT')) {
repository(url: "http://nexus.arcsmed.at/content/repositories/android-snapshots/") {
authentication(userName: getRepositoryUsername(), password: getRepositoryPassword())
}
}
else {
repository(url: "http://nexus.arcsmed.at/content/repositories/android/") {
authentication(userName: getRepositoryUsername(), password: getRepositoryPassword())
}
}
}
pom.project {
name POM_NAME
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
}
}
}
}
}
}
task androidJavadocs(type: Javadoc) {
//source = android.sourceSets.main.allJava
options {
linksOffline "http://d.android.com/reference", "${android.sdkDirectory}/docs/reference"
}
source = android.sourceSets.main.java.sourceFiles
//classpath += project.files(android.plugin.getRuntimeJarList().join(File.pathSeparator))
classpath += project.files(project.android.getBootClasspath().join(File.pathSeparator))
}
task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {
classifier = 'javadoc'
//basename = artifact_id
from androidJavadocs.destinationDir
}
task androidSourcesJar(type: Jar) {
classifier = 'sources'
//basename = artifact_id
//from android.sourceSets.main.allSource
from android.sourceSets.main.java.sourceFiles
}
artifacts {
archives androidSourcesJar
archives androidJavadocsJar
}
}