Hi all! Is there a way to disable the `mavenLoca()...
# community-support
t
Hi all! Is there a way to disable the
mavenLoca()
repository during artifact publishing with
maven-publish
? When I look at
publishing.repositories
I can't see, and ergo, cannot remove it... Rationale, I want to ensure that in a CI environment things aren't published locally when "collective" tasks like
publish
are called, but rather only to the configured repositories.
v
That is the case.
publishToMavenLocal
will call all tasks that publish to
mavenLocal()
publish
will call all tasks that publish to configured publishing repositories
👍 1