nl.codenomads.plugin.SafeRegexPlugin
Owner: Oliver Carr
A plugin that scans a project for insecure regular expression usage using the SafeRegex library
https://gitlab.com/codenomads/saferegex-gradle-plugin
Sources: scm:git@gitlab.com:codenomads/saferegex-gradle-plugin.git
Version 0.0.1 (latest)
0.0.1
Created 13 December 2018.
A plugin that scans a project for insecure regular expression usage using the SafeRegex library
Using the plugins DSL:
plugins {
id("nl.codenomads.plugin.SafeRegexPlugin") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.nl.codenomads.plugin:saferegex-gradle-plugin:0.0.1")
}
}
apply(plugin = "nl.codenomads.plugin.SafeRegexPlugin")
Using the plugins DSL:
plugins {
id "nl.codenomads.plugin.SafeRegexPlugin" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.nl.codenomads.plugin:saferegex-gradle-plugin:0.0.1"
}
}
apply plugin: "nl.codenomads.plugin.SafeRegexPlugin"