Search Gradle plugins

Version 0.2

Created 15 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.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.autonomousapps:no-log4shell:0.2")
  }
}

apply(plugin = "com.autonomousapps.no-log4shell")

Using the plugins DSL:

plugins {
  id "com.autonomousapps.no-log4shell" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.autonomousapps:no-log4shell:0.2"
  }
}

apply plugin: "com.autonomousapps.no-log4shell"

Learn how to apply plugins to subprojects