de.unikassel.vs.apirepo.plugins.api
Owner: Api Repo
Plugin to release your api project on {api:-repo) and view usage statistics
https://github.com/gatzi-fax/Masterarbeit
Sources: https://github.com/gatzi-fax/Masterarbeit
Version 0.0.7-STABLE
Created 20 August 2019.
Plugin to release your api project on {api:-repo) and view usage statistics
Add this plugin to your build using the plugins DSL:
plugins {
id("de.unikassel.vs.apirepo.plugins.api") version "0.0.7-STABLE"
}
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("de.unikassel.vs.apirepo.plugins.api:de.unikassel.vs.apirepo.plugins.api.gradle.plugin:0.0.7-STABLE") }
It can then be applied in the precompiled script plugin:plugins { id("de.unikassel.vs.apirepo.plugins.api") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.unikassel.vs.apirepo.plugins.api:de.unikassel.vs.apirepo.plugins.api.gradle.plugin:0.0.7-STABLE") } } apply(plugin = "de.unikassel.vs.apirepo.plugins.api")
- Applying plugins to all subprojects .