mirror of
https://github.com/AlmostReliable/almostunified.git
synced 2024-11-14 19:25:13 -05:00
5.4 KiB
5.4 KiB
Almost Unified
📖 Information
For an in-depth explanation of the mod, its functionality, config descriptions, FAQs and more, check out the wiki.
🔧 Manual Installation
- Download the latest mod jar from the releases, from CurseForge or Modrinth.
- Install Minecraft NeoForge or Fabric.
- Drop the jar file into your mods folder.
🔗 Depending on the Mod
Maven
Every release of this project is built on and published to the BlameJared maven.
repositories {
maven {
url = 'https://maven.blamejared.com'
name = 'BlameJared Maven'
}
}
Common
dependencies {
modCompileOnly("com.almostreliable.mods:almostunified-common:<version>:api")
}
Fabric
dependencies {
modCompileOnly("com.almostreliable.mods:almostunified-fabric:<version>:api")
modRuntimeOnly("com.almostreliable.mods:almostunified-fabric:<version>")
}
NeoForge [![Maven][maven_neoforge_badge]][maven_neoforge_link]
dependencies {
compileOnly("com.almostreliable.mods:almostunified-neoforge:<version>:api")
runtimeOnly("com.almostreliable.mods:almostunified-neoforge:<version>")
}
Examples
For code examples on how to use the API, check out the wiki.
🖥️ Dev Environment Setup
- Clone the repository
- Import into IntelliJ (VSCode and Eclipse are not tested)
- Run
gradle -> common -> Tasks -> fabric -> genSources
gradle -> fabric -> Tasks -> fabric -> genSources
gradle -> neoforge -> Tasks -> loom -> genSources
gradle -> Tasks -> buildconfig -> generateBuildConfig
- Restart the IDE
The common
module uses fabric-loom. This allows to use ParchmentMC.
Do not use Fabric related features inside the common
module!
💚 Credits
The logo was made by mo_shark.
🎓 License
This project is All Rights Reserved.