org.m2ci.msp.github-ivy-repo
Owner: Ingmar Steiner
Easily resolve GitHub release assets as dependencies in Gradle
https://github.com/m2ci-msp/gradle-github-ivy-repo-plugin
Sources: https://github.com/psibre/gradle-github-ivy-repo-plugin
Version 0.1.1 (latest)
Created 12 August 2018.
Easily resolve GitHub release assets as dependencies in Gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("org.m2ci.msp.github-ivy-repo") version "0.1.1"
}
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("org.m2ci.msp.github-ivy-repo:org.m2ci.msp.github-ivy-repo.gradle.plugin:0.1.1") }
It can then be applied in the precompiled script plugin:plugins { id("org.m2ci.msp.github-ivy-repo") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.m2ci.msp.github-ivy-repo:org.m2ci.msp.github-ivy-repo.gradle.plugin:0.1.1") } } apply(plugin = "org.m2ci.msp.github-ivy-repo")
- Applying plugins to all subprojects .