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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.bytebuddy:byte-buddy-gradle-plugin:1.12.18")
      }
    }
    
    apply(plugin = "net.bytebuddy.byte-buddy-gradle-plugin")
  • Applying plugins to all subprojects .