gradle-publish-plugin not working anymore so can't make a release #1046
Closed
Description
> Task :closeRepository
DEPRECATION WARNING. The staging repository ID is not provided. The fallback mode may impact release reliability and is deprecated. Please consult the project FAQ how it can be fixed.
Attempt 21/21 failed. RepositoryInTransitionException was thrown with message 'Repository 'iominio-1094' (in 'open' state) is in transition. Check again later.'. Giving up. Configure longer timeout if necessary.
> Task :closeRepository FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':closeRepository'.
> Repository 'iominio-1094' (in 'open' state) is in transition. Check again later.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.2.2/userguide/command_line_interface.html#sec:command_line_warnings
BUILD FAILED in 47s
1 actionable task: 1 executed
Related issues
- How to handle DEPRECATION WARNING. The staging repository ID is not provided? Codearte/gradle-nexus-staging-plugin#127
- Ability to set stagingRepositoryId by external plugin Codearte/gradle-nexus-staging-plugin#77
We need to move to
plugins {
... //other plugins used in your project
id 'io.codearte.nexus-staging' version '0.20.0'
id 'de.marcphilipp.nexus-publish' version '0.2.0'
}
publishing {
... //your current publishing to Maven Central configuration
}
//optionally
nexusStaging {
packageGroup = "your-package-group-if-different-than-groupId"
}
//optionally
nexusPublishing {
//for custom configuration if needed - credentials
// are by default taken from nexus-staging
// or from properties nexusUsername and nexusPassword
}