gradle-maven-publish-plugin
gradle-maven-publish-plugin copied to clipboard
A Gradle plugin that publishes your Android and Kotlin libraries, including sources and javadoc, to Maven Central or any other Nexus instance.
## Introduction When the sonatype host took a lot of time to respond while running the `closeAndReleaseRepository`, the exception occurred twice. So there must be a configuration to specify a...
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Ignored or Blocked These are blocked by an existing closed PR and will...
I am having trouble publishing locally after upgrading GPG past 2.1 on a new computer where I no longer have `secring.gpg` and I am not sure where to point the...
I was just trying to migrate my project to use this plugin. But unfortunately, I couldn't find a way to configure the artifactId without going through hoops, and the default...
If I run a publish task for a module which depends on another module ``` Gradle detected a problem with the following location: '~/Development/sqldelight/runtime/build/libs/runtime-2.1.0-SNAPSHOT-javadoc.jar.asc'. Reason: Task ':runtime:publishIosArm32PublicationToInstallLocallyRepository' uses this output...
Can we add support to publish the test results? ```groovy task testsJar(type: Jar) { group = 'Publications' description = 'Create jar of tests.' archiveClassifier = 'tests' from sourceSets.test.output } ```
Can we add support to aggregate all of the reports together? ```groovy task reportsZip(type: Zip, dependsOn: check) { group = 'Publications' description = 'Create a zip of all reports.' archiveClassifier...
Is there a way to configure the publish target repository per variant? ```kotlin mavenPublish { androidVariantToPublish = "freeRelease" } mavenPublishing { publishToMavenCentral(com.vanniktech.maven.publish.SonatypeHost.S01) } ``` Now I'm looking for a solution,...