A simple library with stack operations that can be used with ByteBuddy
This library provides stack operations that can be integrated into the ByteBuddy toolchain, such us
- Simple operations like GOTO
- Forth-like operations
- Very simple Frame operations
- JVM-specific operations like Try-Catch statements and delegation invocations
It also contains useful ASM visitors that allow injecting bytecode in different ways, supporting ByteBuddy's runtime class creation and class redefinition.
To use this project, you will have to register the maven-repository https://clipi-repo.herokuapp.com/.
You will then be able to import it with the id me.clipi.bc-manipulator
build.gradle.kts
repositories {
maven {
name = "Clipi"
url = uri("https://clipi-repo.herokuapp.com/")
}
}
dependencies {
implementation("me.clipi:bc-manipulator:latest.release")
}
build.gradle
repositories {
maven {
name = 'Clipi'
url = uri 'https://clipi-repo.herokuapp.com/'
}
}
dependencies {
implementation 'me.clipi:bc-manipulator:latest.release'
}
pom.xml
<repositories>
<repository>
<id>clipi</id>
<url>https://clipi-repo.herokuapp.com/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>me.clipi</groupId>
<artifactId>bc-manipulator</artifactId>
<version>${bc-manipulator-version}</version>
</dependency>
</dependencies>
Lesser General Public License version 3
BC-Manipulator is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
BC-Manipulator is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with BC-Manipulator. If not, see https://www.gnu.org/licenses/.
See also: LIBRARIES.md