This message was deleted.
# community-support
s
This message was deleted.
t
Something like this? (totally untested)
Copy code
afterProject { project ->
  project.pluginManager.withPlugin("maven-publish") {
    project.publications.repositories.withType(MavenArtifactRepository) { repo ->
      if (repo.url.toString() == "xxx") {
        repo.url = "yyy"
      }
    }
  }
}
👍 1