Publish to Maven Central #9
3 changed files with 17 additions and 0 deletions
|
@ -107,6 +107,14 @@ nexus {
|
|||
snapshotRepositoryUrl = 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
|
||||
}
|
||||
|
||||
uploadArchives {
|
||||
repositories {
|
||||
mavenDeployer {
|
||||
pom.artifactId = "lbrysdk64"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
{%- for aar in aars %}
|
||||
compile(name: '{{ aar }}', ext: 'aar')
|
||||
|
|
|
@ -107,6 +107,14 @@ nexus {
|
|||
snapshotRepositoryUrl = 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
|
||||
}
|
||||
|
||||
uploadArchives {
|
||||
repositories {
|
||||
mavenDeployer {
|
||||
pom.artifactId = "lbrysdk32"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
{%- for aar in aars %}
|
||||
compile(name: '{{ aar }}', ext: 'aar')
|
||||
|
|
|
@ -865,6 +865,7 @@ class ToolchainCL(object):
|
|||
raise BuildInterruptingException(
|
||||
"Unknown build mode {} for apk()".format(args.build_mode))
|
||||
output = shprint(gradlew, "--console=plain", gradle_task,
|
||||
"uploadArchives",
|
||||
_tail=20,
|
||||
_critical=True, _env=env)
|
||||
|
||||
|
|
Loading…
Reference in a new issue