co.insecurity.repository-mirrors
Owner:
Milo Minderbinder
Gradle Plugin that automatically updates buildscript and project repositories to use the configured mirror URLs.
https://github.com/milo-minderbinder/repository-mirrors-gradle-plugin
Sources: https://github.com/milo-minderbinder/repository-mirrors-gradle-plugin
Version 0.2.0
Created 11 December 2019.
A Gradle init script plugin that dynamically updates buildscript and project repositories to use the configured mirror URLs.
Add this plugin to your build using the plugins DSL:
plugins {
id("co.insecurity.repository-mirrors") version "0.2.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("co.insecurity.repository-mirrors:co.insecurity.repository-mirrors.gradle.plugin:0.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("co.insecurity.repository-mirrors") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("co.insecurity.repository-mirrors:co.insecurity.repository-mirrors.gradle.plugin:0.2.0") } } apply(plugin = "co.insecurity.repository-mirrors")
- Applying plugins to all subprojects .