Search Gradle plugins

com.linecorp.gradle.license-git

Owner: LINE_OSS

Applies a header to files, typically a license. This plugin supports git based configurations.

https://github.com/line/license-gradle-plugin-git

Sources: https://github.com/line/license-gradle-plugin-git.git

Version 0.1.0 (latest)

Created 15 September 2023.

Applies a header to files, typically a license. This plugin supports git based configurations.

Using the plugins DSL:

plugins {
  id("com.linecorp.gradle.license-git") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.linecorp.gradle.license-git:license-gradle-plugin-git:0.1.0")
  }
}

apply(plugin = "com.linecorp.gradle.license-git")

Using the plugins DSL:

plugins {
  id "com.linecorp.gradle.license-git" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.linecorp.gradle.license-git:license-gradle-plugin-git:0.1.0"
  }
}

apply plugin: "com.linecorp.gradle.license-git"

Learn how to apply plugins to subprojects