Search Gradle plugins

io.dotinc.gitleaks

GitLeaks gradle plugin is an analysis tool based on https://github.com/zricethezav/gitleaks used to find secrets pushed into the SCM repository.

https://github.com/bulivlad/gitleaks-gradle#readme

Sources: https://github.com/bulivlad/gitleaks-gradle

Version 0.1.0 (latest)

Created 15 April 2022.

GitLeaks gradle plugin is an analysis tool based on https://github.com/zricethezav/gitleaks used to find secrets pushed into the SCM repository.

Using the plugins DSL:

plugins {
  id("io.dotinc.gitleaks") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.dotinc:gitleaks-gradle:0.1.0")
  }
}

apply(plugin = "io.dotinc.gitleaks")

Using the plugins DSL:

plugins {
  id "io.dotinc.gitleaks" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.dotinc:gitleaks-gradle:0.1.0"
  }
}

apply plugin: "io.dotinc.gitleaks"

Learn how to apply plugins to subprojects