Local publishing

I’m trying to switch to using the plugin portal exclusively for my plugins (ie. using com.gradle.plugin-publish exclusively) but I don’t see anyway to publish locally as could be done with maven? Is this possible? Thanks!

Please see this doc about publishing, including locally.

thanks, I’m aware of that, but that uses the maven plugin. My question is whether it’s possible to publish locally using only the gradle.plugin-publish plugin exclusively, that is, without having to configure explicitly for maven. Does my question make sense now?

You cannot really publish locally without another plugin, but maybe you could use/arrange the artifacts in your build/ directory? IMO use of maven-publish would be preferred.

ok, fair enough, I’ll do that. Thanks.