You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I have a multi-module Gradle project where the Artifactory convention is applied to each module individually using build logic conventions, including the root project. Sometimes, I want to limit artifactory traffic by publishing only specific modules, which I can do with gradle :<module>:artifactoryPublish. However, when I run gradle :artifactoryPublish from the root project, the plugin publishes artifacts from all submodules.
Is there a way to configure the root project convention so that running gradle :artifactoryPublish only publishes the root project's artifacts (publications), similar to how it works for subprojects?