net.bytebuddy.byte-buddy-gradle-plugin
Owner: Rafael Winterhalter
A plugin for post-processing class files via Byte Buddy in a Gradle build.
Sources: https://github.com/raphw/byte-buddy
Version 1.14.0
1.14.0
Created 18 February 2023.
The Byte Buddy plugin allows for post processing Java classes with byte code transformation.
Add this plugin to your build using the plugins DSL:
plugins {
id("net.bytebuddy.byte-buddy-gradle-plugin") version "1.14.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.bytebuddy:byte-buddy-gradle-plugin:1.14.0") } } apply(plugin = "net.bytebuddy.byte-buddy-gradle-plugin")
- Applying plugins to all subprojects .