forked from mozilla-mobile/android-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublish.gradle
120 lines (99 loc) · 3.44 KB
/
publish.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
def libRepoName = properties.libRepositoryName
def libUrl = properties.libUrl
def libVcsUrl = properties.libVcsUrl
def libLicense = properties.libLicense
def libLicenseUrl = properties.libLicenseUrl
ext.configurePublish = { groupIdArg, artifactIdArg, descriptionArg ->
apply plugin: 'com.github.dcendents.android-maven'
group = groupIdArg
install {
repositories.mavenInstaller {
pom {
project {
packaging 'aar'
groupId groupIdArg
artifactId artifactIdArg
name libRepoName
description descriptionArg
url libUrl
licenses {
license {
name libLicense
url libLicenseUrl
}
}
developers {
developer {
id 'mozact'
name 'Mozilla Android Components Team'
email 'android-components@lists.mozilla.org'
}
}
scm {
connection libVcsUrl
developerConnection libVcsUrl
url libUrl
}
}
}
}
}
version = Config.componentsVersion
task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}
task javadoc(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
//archives javadocJar
archives sourcesJar
}
Properties localProperties = null;
if (project.rootProject.file('local.properties').canRead()) {
localProperties = new Properties()
localProperties.load(project.rootProject.file('local.properties').newDataInputStream())
}
apply plugin: 'maven'
uploadArchives {
repositories {
mavenDeployer {
pom.groupId = groupIdArg
pom.artifactId = artifactIdArg
pom.version = Config.componentsVersion
pom.project {
licenses {
license {
name libLicense
url libLicenseUrl
distribution 'repo'
}
}
}
repository(url: "file://${project.buildDir}/maven")
}
}
}
task zipMavenArtifacts(type: Zip) {
from "${project.buildDir}/maven"
include '**/*.aar'
include '**/*.jar'
include '**/*.pom'
include '**/*.md5'
include '**/*.sha1'
// Metadata is generated by maven.mozilla.org directly
exclude '**/*maven-metadata.xml*'
archiveName "target.maven.zip"
includeEmptyDirs = false
destinationDir(file("${project.buildDir}"))
}
}