mirror of
https://github.com/AlmostReliable/almostunified.git
synced 2024-11-14 11:15:23 -05:00
they made it ARR and it's kinda scary
.github/workflows | ||
Common | ||
Fabric | ||
gradle/wrapper | ||
NeoForge | ||
testmod_configs | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
build.gradle.kts | ||
CHANGELOG.md | ||
gradle.properties | ||
gradlew | ||
gradlew.bat | ||
Jenkinsfile | ||
README.md | ||
settings.gradle.kts |
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
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.