Last active
October 5, 2019 09:58
-
-
Save btchip/71313d1258cf71a2d2cd72e3b82bacf7 to your computer and use it in GitHub Desktop.
publish to jcenter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
group = publishedGroupId | |
version = libraryVersion | |
install { | |
repositories.mavenInstaller { | |
pom.project { | |
packaging 'aar' | |
groupId publishedGroupId | |
artifactId artifact | |
name libraryName | |
description libraryDescription | |
url siteUrl | |
licenses { | |
license { | |
name licenseName | |
url licenseUrl | |
} | |
} | |
developers { | |
developer { | |
id developerId | |
name developerName | |
email developerEmail | |
} | |
} | |
scm { | |
connection gitUrl | |
developerConnection gitUrl | |
url siteUrl | |
} | |
} | |
} | |
} | |
task sourcesJar(type: Jar) { | |
classifier = 'sources' | |
from android.sourceSets.main.java.srcDirs | |
} | |
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 properties = new Properties() | |
properties.load(project.rootProject.file('local.properties').newDataInputStream()) | |
bintray { | |
user = properties.getProperty("bintray.user") | |
key = properties.getProperty("bintray.apikey") | |
configurations = ['archives'] | |
pkg { | |
repo = bintrayRepo | |
name = bintrayName | |
desc = libraryDescription | |
websiteUrl = siteUrl | |
vcsUrl = gitUrl | |
licenses = allLicenses | |
dryRun = false | |
publish = true | |
override = true | |
publicDownloadNumbers = false | |
version { | |
desc = libraryDescription | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment