An open API service indexing awesome lists of open source software.

https://github.com/isxander/lib-installer

An easy solution to install XanderLib/ModCore on runtime.
https://github.com/isxander/lib-installer

Last synced: about 2 months ago
JSON representation

An easy solution to install XanderLib/ModCore on runtime.

Awesome Lists containing this project

README

          

# Lib Installer
*An easy solution for developers to install XanderLib/ModCore at runtime.*

## How To Use
```groovy
repositories {
maven { url = 'https://jitpack.io' }
}

dependencies {
// you will need to shadow/embed this dependency
implementation 'uk.co.isXander:lib-installer:-SNAPSHOT'
}

jar {
manifest {
attributes (
// ------------------------------
// Install XanderLib
'FMLCorePlugin': 'co.uk.isxander.libinstaller.fml.XanderLib',
// Install ModCore
'FMLCorePlugin': 'co.uk.isxander.libinstaller.fml.ModCore',
// ------------------------------
'FMLCorePluginContainsFMLMod': true,
'ForceLoadAsMod': true,
'ModSide': 'CLIENT'
)
}
}
```