Here (added in #2809) the maven repo https://packages.jetbrains.team/maven/p/ij/intellij-dependencies is automatically added to the project.
This isn't great:
- for security - projects should manage their list of repositories. Adding one automatically behind the scenes when applying the plugin isn't very visible.
- this can actually break builds (our case) as the project repos override the settings one
Note: using repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) (which is set by the default Android new project template) should also fail due to this added repo.
Here (added in #2809) the maven repo
https://packages.jetbrains.team/maven/p/ij/intellij-dependenciesis automatically added to the project.This isn't great:
Note: using
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)(which is set by the default Android new project template) should also fail due to this added repo.