pl.unity.lazy-credentials
Owner: Unity Group
Evaluate your maven credentials settings only when it's necessary.
https://github.com/Unity-Group/gradle-lazy-credentials
Sources: https://github.com/Unity-Group/gradle-lazy-credentials
Version 1.2.1 (latest)
Created 31 October 2018.
Evaluate your maven credentials settings only when it's necessary.
Add this plugin to your build using the plugins DSL:
plugins {
id("pl.unity.lazy-credentials") version "1.2.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("pl.unity.lazy-credentials:pl.unity.lazy-credentials.gradle.plugin:1.2.1") }
It can then be applied in the precompiled script plugin:plugins { id("pl.unity.lazy-credentials") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("pl.unity.lazy-credentials:pl.unity.lazy-credentials.gradle.plugin:1.2.1") } } apply(plugin = "pl.unity.lazy-credentials")
- Applying plugins to all subprojects .