io.dotinc.gitleaks
Owner: Vlad Bulimac
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)
0.1.0
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"