org.git.manifest
Owner: Pepino
Testing publising of plugin
Sources: https://github.com/x/y/pokus.git
Version 0.1-alpha (latest)
Created 28 May 2018.
Gradle alternative to Android repo tool (multi source GIT repositories)
Add this plugin to your build using the plugins DSL:
plugins {
id("org.git.manifest") version "0.1-alpha"
}
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.git.manifest:org.git.manifest.gradle.plugin:0.1-alpha") }
It can then be applied in the precompiled script plugin:plugins { id("org.git.manifest") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.git.manifest:org.git.manifest.gradle.plugin:0.1-alpha") } } apply(plugin = "org.git.manifest")
- Applying plugins to all subprojects .