io.github.azmaah.eclipse-transformer
Owner: Hamza Mekaoui
A Gradle plugin to transform Java binaries using the Eclipse Transformer CLI.
https://github.com/azmaah/eclipse-transformer-gradle-plugin
Sources: https://github.com/azmaah/eclipse-transformer-gradle-plugin
Version 0.0.1 (latest)
0.0.1
Created 12 April 2024.
A Gradle plugin to transform Java binaries using the Eclipse Transformer CLI.
Using the plugins DSL:
plugins {
id("io.github.azmaah.eclipse-transformer") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.azmaah:plugin:0.0.1")
}
}
apply(plugin = "io.github.azmaah.eclipse-transformer")
Using the plugins DSL:
plugins {
id "io.github.azmaah.eclipse-transformer" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.azmaah:plugin:0.0.1"
}
}
apply plugin: "io.github.azmaah.eclipse-transformer"