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.15.10 (latest)
1.15.10
Created 03 November 2024.
The Byte Buddy plugin allows for post processing Java classes with byte code transformation.
Using the plugins DSL:
plugins {
id("net.bytebuddy.byte-buddy-gradle-plugin") version "1.15.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.bytebuddy:byte-buddy-gradle-plugin:1.15.10")
}
}
apply(plugin = "net.bytebuddy.byte-buddy-gradle-plugin")
Using the plugins DSL:
plugins {
id "net.bytebuddy.byte-buddy-gradle-plugin" version "1.15.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.bytebuddy:byte-buddy-gradle-plugin:1.15.10"
}
}
apply plugin: "net.bytebuddy.byte-buddy-gradle-plugin"