

Springboard
Springboard is a powerful library designed for direct transformation of the Fabric loader. This utility opens up extensive possibilities for developers to customize the mod loading process.
Key Features
The library provides an entry point springboard.api.SpringboardCandidateEntrypoint
that allows:
- Adding additional mod candidates
- Expanding the pre-initialization classpath
- Registering entry points with higher execution priority
- Configuring exceptions for the class loader (forcing classes to be loaded through the system class loader)
- Integrating class transformers (
springboard.tweak.classloader.ClassTransformer
)
Important Recommendations
Developers should only use the SpringboardCandidateEntrypoint
and ClassTransformer
classes, as other library components are under active development and may change.
Dependency Configuration
repositories {
maven {
url "https://maven.jab125.dev/"
}
}
dependencies {
modApi "com.jab125:springboard:0.2.18"
}
Compatibility
Currently, Springboard is not compatible with Quilt, as implementing support for this platform would require significant codebase refactoring.