Search Gradle plugins

Version 1.0.1

Created 06 January 2017.

A shadow transformer implementation for log4j to concatenate Log4j2Plugins.dat files.

Using the plugins DSL:

plugins {
  id("de.sebastianboegl.shadow.transformer.log4j") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.sebastianboegl.gradle.plugins:shadow-log4j-transformer:1.0.1")
  }
}

apply(plugin = "de.sebastianboegl.shadow.transformer.log4j")

Using the plugins DSL:

plugins {
  id "de.sebastianboegl.shadow.transformer.log4j" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.sebastianboegl.gradle.plugins:shadow-log4j-transformer:1.0.1"
  }
}

apply plugin: "de.sebastianboegl.shadow.transformer.log4j"

Learn how to apply plugins to subprojects