de.lukaskoerfer.gradle.debugging
Owner: Lukas Körfer
Adds support for extended debugging options
https://github.com/lukoerfer/gradle-debugging
Sources: https://github.com/lukoerfer/gradle-debugging
Version 0.2 (latest)
Created 17 August 2018.
Adds support for extended debugging options
Add this plugin to your build using the plugins DSL:
plugins {
id("de.lukaskoerfer.gradle.debugging") version "0.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("de.lukaskoerfer.gradle.debugging:de.lukaskoerfer.gradle.debugging.gradle.plugin:0.2") }
It can then be applied in the precompiled script plugin:plugins { id("de.lukaskoerfer.gradle.debugging") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.lukaskoerfer.gradle.debugging:de.lukaskoerfer.gradle.debugging.gradle.plugin:0.2") } } apply(plugin = "de.lukaskoerfer.gradle.debugging")
- Applying plugins to all subprojects .