Owner:
Deltafi
Applies the DeltaFi license header conventions (mappings, excludes, strict check) to a project
Version 2.57.0 (latest)
Created 23 June 2026.
Applies the DeltaFi license header conventions (mappings, excludes, strict check) to a project
Add this plugin to your build using the plugins DSL:
plugins {
id("org.deltafi.license-convention") version "2.57.0"
}
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("org.deltafi.license-convention:org.deltafi.license-convention.gradle.plugin:2.57.0") }It can then be applied in the precompiled script plugin:plugins { id("org.deltafi.license-convention") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.deltafi.license-convention:org.deltafi.license-convention.gradle.plugin:2.57.0") } } apply(plugin = "org.deltafi.license-convention") - Applying plugins to all subprojects .