Owner:
Jochen Seeber
Gradle project configuration for Github Repositories
Version 1.1.2 (latest)
Created 19 September 2019.
Gradle project configuration for Github Repositories
Add this plugin to your build using the plugins DSL:
plugins {
id("me.seeber.repository.git") version "1.1.2"
}
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("me.seeber.repository.git:me.seeber.repository.git.gradle.plugin:1.1.2") }It can then be applied in the precompiled script plugin:plugins { id("me.seeber.repository.git") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("me.seeber.repository.git:me.seeber.repository.git.gradle.plugin:1.1.2") } } apply(plugin = "me.seeber.repository.git") - Applying plugins to all subprojects .