com.andimarek.discreet
Owner:
Andreas Marek
Get discreet source code dependencies
https://bintray.com/andimarek/discreet
Sources: https://bintray.com/andimarek/discreet
Version 0.1 (latest)
Created 17 March 2019.
Get discreet source code dependencies
Add this plugin to your build using the plugins DSL:
plugins {
id("com.andimarek.discreet") version "0.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("com.andimarek.discreet:com.andimarek.discreet.gradle.plugin:0.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.andimarek.discreet") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.andimarek.discreet:com.andimarek.discreet.gradle.plugin:0.1") } } apply(plugin = "com.andimarek.discreet")
- Applying plugins to all subprojects .