com.netflix.nebula.dependency-lock
Owner: Nebula Plugins
Plugin to lock dynamic dependencies
https://github.com/nebula-plugins/gradle-dependency-lock-plugin
Sources: https://github.com/nebula-plugins/gradle-dependency-lock-plugin.git
Version 15.1.1 (latest)
Created 12 December 2024.
Plugin to lock dynamic dependencies
Add this plugin to your build using the plugins DSL:
plugins {
id("com.netflix.nebula.dependency-lock") version "15.1.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.netflix.nebula.dependency-lock:com.netflix.nebula.dependency-lock.gradle.plugin:15.1.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.netflix.nebula.dependency-lock") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.netflix.nebula.dependency-lock:com.netflix.nebula.dependency-lock.gradle.plugin:15.1.1") } } apply(plugin = "com.netflix.nebula.dependency-lock")
- Applying plugins to all subprojects .