Skip to content

Latest commit

 

History

History
78 lines (69 loc) · 2.44 KB

README.md

File metadata and controls

78 lines (69 loc) · 2.44 KB

BC-Manipulator

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

It also contains useful ASM visitors that allow injecting bytecode in different ways, supporting ByteBuddy's runtime class creation and class redefinition.

Getting Started

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

Gradle

Kotlin

build.gradle.kts

repositories {
    maven {
        name = "Clipi"
		url = uri("https://clipi-repo.herokuapp.com/")
	}
}

dependencies {
    implementation("me.clipi:bc-manipulator:latest.release")
}
Groovy

build.gradle

repositories {
    maven {
        name = 'Clipi'
		url = uri 'https://clipi-repo.herokuapp.com/'
	}
}

dependencies {
    implementation 'me.clipi:bc-manipulator:latest.release'
}

Maven

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>

License

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