forked from gtomato/carouselview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.gradle
80 lines (65 loc) · 2.08 KB
/
deploy.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
/**
* Build Script for Library Publication
*
* Author: Sunny Chung
*/
apply plugin: 'signing'
// parse property file as build script variables
["library.properties", "deploy.properties"].each { filename ->
File file = file(filename)
if (file.exists()) {
Properties props = new Properties()
props.load(new FileInputStream(file))
props.each { prop ->
project.ext.set(prop.key, prop.value)
// println "${prop.key} -> ${prop.value}"
}
}
}
if (project.ext.hasProperty('group')) {
project.group = project.ext.group
project.archivesBaseName = project.ext.archivesBaseName
project.version = project.ext.version
}
signing {
required { project.hasProperty("release") && gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
uploadArchives {
configuration = configurations.archives
repositories.mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
if (project.hasProperty('bintrayRepo')) {
repository(url: bintrayRepo) {
authentication(userName: bintrayUsername, password: bintrayKey)
}
}
if (project.hasProperty('sonatypeRepo')) {
repository(url: sonatypeRepo) {
authentication(userName: sonatypeUsername, password: sonatypePassword)
}
}
}
}
afterEvaluate { project ->
task javadoc(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
if (JavaVersion.current().isJava8Compatible()) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar, dependsOn: javadoc) {
classifier = 'sources'
from android.sourceSets.main.java.srcDirs
// from android.sourceSets.main.allSource
}
artifacts {
archives javadocJar
archives sourcesJar
}
}