Search Gradle plugins

net.bytebuddy.byte-buddy-gradle-plugin

A plugin for post-processing class files via Byte Buddy in a Gradle build.

https://bytebuddy.net

Sources: https://github.com/raphw/byte-buddy

Using the plugins DSL:

plugins {
  id("net.bytebuddy.byte-buddy-gradle-plugin") version "1.13.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.bytebuddy:byte-buddy-gradle-plugin:1.13.0")
  }
}

apply(plugin = "net.bytebuddy.byte-buddy-gradle-plugin")

Using the plugins DSL:

plugins {
  id "net.bytebuddy.byte-buddy-gradle-plugin" version "1.13.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.bytebuddy:byte-buddy-gradle-plugin:1.13.0"
  }
}

apply plugin: "net.bytebuddy.byte-buddy-gradle-plugin"

Learn how to apply plugins to subprojects