Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
103 changes: 103 additions & 0 deletions gradle-mvn-push.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
apply plugin: 'maven'
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'
}
}

artifacts {
archives apklib
}

task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}

signing {
sign configurations.archives
}

if (!hasProperty("sonatypeUsername")) {
sonatypeUsername = ""
}
if (!hasProperty("sonatypePassword")) {
sonatypePassword = ""
}

uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }

repository(url: 'https://oss.sonatype.org/service/local/staging/deploy/maven2') {
authentication(userName: sonatypeUsername, password: sonatypePassword)
}
snapshotRepository(url: 'https://oss.sonatype.org/content/repositories/snapshots/') {
authentication(userName: sonatypeUsername, password: sonatypePassword)
}

modifyPom(addFilter('aar') { artifact, file ->
artifact.name == 'android-maps-utils'
})

modifyPom(addFilter('apklib') { artifact, file ->
artifact.name == 'android-maps-utils-apklib'
})

// There's no official apklib for Google Play services, so we
// can't really maintain that dependency for the apklib packaging.
pom('apklib').whenConfigured { pom ->
pom.dependencies = []
}
}
}
}

def modifyPom(pom) {
pom.project {
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:git@github.com:googlemaps/android-maps-utils.git'
connection 'scm:git@github.com:googlemaps/android-maps-utils.git'
developerConnection 'scm:git@github.com: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'
}
}
}
}
106 changes: 5 additions & 101 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
apply plugin: 'com.android.library'
apply plugin: 'maven'
apply plugin: 'signing'

archivesBaseName = 'android-maps-utils'
group = 'com.google.maps.android'

dependencies {
compile 'com.google.android.gms:play-services-maps:11.0.4'
Expand Down Expand Up @@ -35,106 +30,15 @@ android {
// This enables long timeouts required on slow environments, e.g. Travis
adbOptions {
timeOutInMs 10 * 60 * 1000 // 10 minutes
installOptions "-d","-t"
installOptions "-d", "-t"
}

}

task instrumentTest(dependsOn: connectedCheck)

task apklib(type: Zip) {
dependsOn 'check'
appendix = extension = 'apklib'

from 'AndroidManifest.xml'
into('res') {
from 'res'
}
into('src') {
from 'src'
}
}

artifacts {
archives apklib
}

task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}

signing {
sign configurations.archives
}

if (!hasProperty("sonatypeUsername")) {
sonatypeUsername = ""
}
if (!hasProperty("sonatypePassword")) {
sonatypePassword = ""
}

uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }

repository(url: 'https://oss.sonatype.org/service/local/staging/deploy/maven2') {
authentication(userName: sonatypeUsername, password: sonatypePassword)
}
snapshotRepository(url: 'https://oss.sonatype.org/content/repositories/snapshots/') {
authentication(userName: sonatypeUsername, password: sonatypePassword)
}

modifyPom(addFilter('aar') { artifact, file ->
artifact.name == 'android-maps-utils'
})

modifyPom(addFilter('apklib') { artifact, file ->
artifact.name == 'android-maps-utils-apklib'
})

// There's no official apklib for Google Play services, so we
// can't really maintain that dependency for the apklib packaging.
pom('apklib').whenConfigured { pom ->
pom.dependencies = []
}
}
}
}

def modifyPom(pom) {
pom.project {
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:git@github.com:googlemaps/android-maps-utils.git'
connection 'scm:git@github.com:googlemaps/android-maps-utils.git'
developerConnection 'scm:git@github.com: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'
}
}
}
if (System.getenv("JITPACK")) {
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

apply plugin: 'maven'
} else {
apply from: '../gradle-mvn-push.gradle'
}