Deploying maven artifacts

Hello,

What you guys use for stable deployment of artifacts to the maven central ?

I’ve tried maven-publish but it has issues with artifact signing. What is the preferred way for publishing of maven artifacts in Gradle ?

Thanks in advance

At the moment the only option for publishing to Maven Central is the Maven plugin as it hooks into the signing functionality. You might want to give the Gradle Nexus plugin a shot which pre-configures the Maven plugin under the covers with meaningful defaults for publishing to Maven Central.

I’ll give it a try. Thanks for your feedback.