com.autonomousapps.no-log4shell
Owner: Tony Robalik
Prevent vulnerable version of log4j from being resolved in your project
https://github.com/autonomousapps/no-log4shell
Sources: https://github.com/autonomousapps/no-log4shell
Version 0.3 (latest)
0.3
Created 17 December 2021.
Prevent vulnerable versions of log4j from being resolved in your project
Using the plugins DSL:
plugins {
id("com.autonomousapps.no-log4shell") version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.autonomousapps:no-log4shell:0.3")
}
}
apply(plugin = "com.autonomousapps.no-log4shell")
Using the plugins DSL:
plugins {
id "com.autonomousapps.no-log4shell" version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.autonomousapps:no-log4shell:0.3"
}
}
apply plugin: "com.autonomousapps.no-log4shell"