Skip to content

Instantly share code, notes, and snippets.

@hotstu
Created May 14, 2019 04:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save hotstu/ef1c9e84fa1d2952adc07851ae60f9c7 to your computer and use it in GitHub Desktop.
Save hotstu/ef1c9e84fa1d2952adc07851ae60f9c7 to your computer and use it in GitHub Desktop.
deploy Android aar package to private artifactory repo/本脚本将编译后的aar上传私有artifactory仓库
//本脚本将编译后的aar上传私有artifactory仓库
//first config ~/.gradle/gradle.properties
//artifactory_contextUrl=http\://127.0.0.1\:8080/artifactory
//artifactory_user=anmin
//artifactory_repo_release=libs-release-local
//artifactory_password=password
//artifactory_repo_snapshot=libs-snapshot-local
//
//then in you root project's build.gradle:
//import below in project.gradle
//buildscript {
// ...
// dependencies {
// //Check for the latest version here: http://plugins.gradle.org/plugin/com.jfrog.artifactory
// classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.9.5"
// }
//}
//usage:
//deploy:
//./gradlew assembleRelease artifactoryPublish
apply plugin: 'com.jfrog.artifactory'
apply plugin: 'maven-publish'
task testConfig {
doLast {
configurations.implementation.allDependencies.all {
println it
}
}
}
task androidJavadocs(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
options {
failOnError false
encoding "UTF-8"
charSet "UTF-8"
addStringOption('Xdoclint:none', '-quiet')
}
android.libraryVariants.all { variant ->
if (variant.name == 'release') {
variant.javaCompileProvider.configure{
owner.classpath += files(it.classpath.files)
}
}
}
exclude '**/R.html', '**/R.*.html', '**/index.html'
}
task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {
archiveClassifier = 'javadoc'
from androidJavadocs.destinationDir
}
task androidSourcesJar(type: Jar) {
archiveClassifier = 'sources'
from android.sourceSets.main.java.srcDirs
}
afterEvaluate {
publishing {
publications {
aar(MavenPublication) {
groupId project.group
version = project.version
artifactId project.name
artifact bundleReleaseAar
artifact androidJavadocsJar
artifact androidSourcesJar
pom.withXml {
final dependenciesNode = asNode().appendNode('dependencies')
ext.addDependency = { Dependency dep, String scope ->
if (dep.group == null || dep.version == null || dep.name == null || dep.name == "unspecified")
return // ignore invalid dependencies
final dependencyNode = dependenciesNode.appendNode('dependency')
dependencyNode.appendNode('groupId', dep.group)
dependencyNode.appendNode('artifactId', dep.name)
dependencyNode.appendNode('version', dep.version)
dependencyNode.appendNode('scope', scope)
if (!dep.transitive) {
// If this dependency is transitive, we should force exclude all its dependencies them from the POM
final exclusionNode = dependencyNode.appendNode('exclusions').appendNode('exclusion')
exclusionNode.appendNode('groupId', '*')
exclusionNode.appendNode('artifactId', '*')
} else if (!dep.properties.excludeRules.empty) {
// Otherwise add specified exclude rules
final exclusionNode = dependencyNode.appendNode('exclusions').appendNode('exclusion')
dep.properties.excludeRules.each { ExcludeRule rule ->
exclusionNode.appendNode('groupId', rule.group ?: '*')
exclusionNode.appendNode('artifactId', rule.module ?: '*')
}
}
}
// List all "compile" dependencies (for old Gradle)
configurations.compile.getDependencies().each { dep -> addDependency(dep, "compile") }
// List all "api" dependencies (for new Gradle) as "compile" dependencies
configurations.api.getDependencies().each { dep -> addDependency(dep, "compile") }
// List all "implementation" dependencies (for new Gradle) as "runtime" dependencies
configurations.implementation.getDependencies().each { dep -> addDependency(dep, "runtime") }
}
}
}
}
}
artifactory {
contextUrl = "${artifactory_contextUrl}"
publish {
repository {
repoKey = project.version.endsWith('SNAPSHOT') ? "${artifactory_repo_snapshot}" : "${artifactory_repo_release}"
username = "${artifactory_user}"
password = "${artifactory_password}"
maven = true
}
defaults {
// Tell the Artifactory Plugin which artifacts should be published to Artifactory.
publications('aar')
publishArtifacts = true
// Properties to be attached to the published artifacts.
properties = ['qa.level': 'basic', 'dev.team': 'core']
// Publish generated POM files to Artifactory (true by default)
publishPom = true
}
}
resolve {
repository {
repoKey = "${artifactory_repo_release}"
username = "${artifactory_user}"
password = "${artifactory_password}"
maven = true
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment