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.12.3
1.12.3
Created 02 December 2021.
A plugin for post-processing class files via Byte Buddy in a Gradle build.
Add this plugin to your build using the plugins DSL:
plugins {
id("net.bytebuddy.byte-buddy-gradle-plugin") version "1.12.3"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.net.bytebuddy:byte-buddy-gradle-plugin:1.12.3") } } apply(plugin = "net.bytebuddy.byte-buddy-gradle-plugin")
- Applying plugins to all subprojects .