forked from googlemaps/android-maps-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgradle-mvn-push.gradle
120 lines (105 loc) · 3.69 KB
/
gradle-mvn-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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
//apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'signing'
archivesBaseName = 'android-maps-utils'
group = 'com.google.maps.android'
task apklib(type: Zip) {
dependsOn 'check'
appendix = extension = 'apklib'
from 'AndroidManifest.xml'
into('res') {
from 'res'
}
into('src') {
from 'src'
}
}
task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}
publishing {
publications {
aar(MavenPublication) {
pom {
name = 'Google Maps Android API utility library'
description = 'Handy extensions to the Google Maps Android API.'
url = 'https://github.com/googlemaps/android-maps-utils'
scm {
url = 'scm:[email protected]:googlemaps/android-maps-utils.git'
connection = 'scm:[email protected]:googlemaps/android-maps-utils.git'
developerConnection = 'scm:[email protected]:googlemaps/android-maps-utils.git'
}
licenses {
license {
name = 'The Apache Software License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution = 'repo'
}
}
organization {
name = 'Google Inc'
url = 'http://developers.google.com/maps'
}
developers {
developer {
id = 'broady'
name = 'Chris Broadfoot'
url = 'http://google.com/+ChristopherBroadfoot'
}
}
}
groupId group
artifactId 'android-maps-utils'
version '0.5'
artifact("$buildDir/outputs/aar/android-maps-utils-release.aar")
}
apkLib(MavenPublication) {
pom {
name = 'Google Maps Android API utility library'
description = 'Handy extensions to the Google Maps Android API.'
url = 'https://github.com/googlemaps/android-maps-utils'
scm {
url = 'scm:[email protected]:googlemaps/android-maps-utils.git'
connection = 'scm:[email protected]:googlemaps/android-maps-utils.git'
developerConnection = 'scm:[email protected]:googlemaps/android-maps-utils.git'
}
licenses {
license {
name = 'The Apache Software License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution = 'repo'
}
}
organization {
name = 'Google Inc'
url = 'http://developers.google.com/maps'
}
developers {
developer {
id = 'broady'
name = 'Chris Broadfoot'
url = 'http://google.com/+ChristopherBroadfoot'
}
}
}
groupId group
artifactId 'android-maps-utils-apklib'
version '0.5'
artifact(apklib)
}
}
repositories {
maven {
url "https://oss.sonatype.org/service/local/staging/deploy/maven2"
credentials {
username sonatypeUsername
password sonatypePassword
}
}
}
}
signing {
sign publishing.publications.aar
sign publishing.publications.apkLib
}