https://github.com/omnimodloader/asmhelper
ASM Helper is a versatile library for modifying JAR files, designed to simplify the process of editing ModFiles within the OmniMC framework.
https://github.com/omnimodloader/asmhelper
asm helper jar java java-21 library minecraft mod modifying omnimc simple
Last synced: 4 months ago
JSON representation
ASM Helper is a versatile library for modifying JAR files, designed to simplify the process of editing ModFiles within the OmniMC framework.
- Host: GitHub
- URL: https://github.com/omnimodloader/asmhelper
- Owner: OmniModLoader
- License: mit
- Created: 2024-06-26T23:07:19.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-08T23:00:56.000Z (over 1 year ago)
- Last Synced: 2025-04-10T09:07:24.115Z (9 months ago)
- Topics: asm, helper, jar, java, java-21, library, minecraft, mod, modifying, omnimc, simple
- Language: Java
- Homepage:
- Size: 206 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ASM Helper
ASM Helper is a library designed to facilitate the modification of JAR files, simplifying the process of making changes to ModFiles within the OmniMC framework.
This library is versatile and can be utilized in various contexts beyond OmniMC.
# Examples
[Examples can be seen here](./examples).
# Importing
### Maven
* Include JitPack in your maven build file
```xml
jitpack.io
https://jitpack.io
```
* Add ASMHelper as a dependency
```xml
com.github.OmniModLoader
ASMHelper
2.2.9
```
### Gradle
* Add JitPack to your root `build.gradle` at the end of repositories
```gradle
repositories {
maven {
url 'https://jitpack.io'
}
}
```
* Add the dependency
```gradle
dependencies {
implementation 'com.github.OmniModLoader:ASMHelper:2.2.9'
}
```
# License
[ASMHelper is licensed under MIT](./LICENSE).
# Contributing
If you want to contribute it is best to comment everything and test it a lot with large JAR files and small ones.
All additions will be also tested by me and approved by me. But other than that you are free to contribute as much as
you want.