io.ezet.gradle.try-include-module
Owner: Lars-Kristian Dahl
Include a module if it is available on a path specified in local.properties. This can be used in combination with `resolve-to-module` to easily substitute remotely hosted dependencies with local sources when developing.
https://github.com/ezet/gradle-substitute-for-source
Sources: https://github.com/ezet/gradle-substitute-for-source
Version 0.0.1-alpha1 (latest)
0.0.1-alpha1
Created 15 November 2019.
Include a module if it is available on a path specified in local.properties. This can be used in combination with `resolve-to-module` to easily substitute remotely hosted dependencies with local sources when developing.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.ezet.gradle.try-include-module") version "0.0.1-alpha1"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.io.ezet.gradle:gradle-substitute-for-source:0.0.1-alpha1") } } apply(plugin = "io.ezet.gradle.try-include-module")
- Applying plugins to all subprojects .