-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
This page explains how to add Temporal API to your Minecraft mod project.
Temporal API is a library mod and must be included as a dependency during development and shipped as a required dependency for runtime.
Temporal API supports multiple loaders depending on the Minecraft version:
| Minecraft Version | Mod Loader |
|---|---|
| 1.21.x | NeoForge |
| 1.20.1 | Forge/NeoForge |
Always verify compatibility on the CurseForge files page before upgrading.
Temporal API is distributed via Curse Maven, which mirrors CurseForge artifacts.
Add this repository to your build.gradle:
repositories {
maven {
url = "https://cursemaven.com"
}
}Add the dependency using the Curse Maven coordinates:
dependencies {
implementation "curse.maven:temporalapi-970291:<file-id>"
}-
970291is the CurseForge project ID for Temporal API -
<file-id>must match the exact file ID from the CurseForge files page
Important: The file ID is part of the download URL on CurseForge.
Example:
URL: https://www.curseforge.com/minecraft/mc-mods/temporal-api/files/7027292
File ID: 7027292
Version: 1.9.0
Example dependency declaration:
[[dependencies.yourmodid]]
modId="temporalapi"
mandatory=true
versionRange="[1.9.0,)"
ordering="BEFORE"
side="BOTH"Adjust versionRange based on the API version you target.
- Temporal API is missing from the
modsfolder - Dependency not declared in
mods.toml
- Curse Maven repository missing
- Incorrect file ID
- Using an unsupported Minecraft version
When updating:
- Check CurseForge changelog
- Verify breaking changes
- Update file ID in Gradle
- Test in a clean instance
🚀 Getting Started
🧩 Core Concepts
⚙️ Data Generation
- ⚙️ Advancement
- ⚙️ Damage Type
- ⚙️ Chest Loot Modifier
- ⚙️ Recipe
- ⚙️ Sound
- ⚙️ Jukebox Song
- ⚙️ Enchantment
- ⚙️ Trim Material
- ⚙️ Trim Pattern
- ⚙️ Banner Pattern
- ⚙️ Painting Variant
- ⚙️ Particle Sprite Set
- ⚙️ Wolf Variant
- ⚙️ Item Model
- ⚙️ Block Model
- ⚙️ Block Loot Table
- ⚙️ Tag
- ⚙️ Language Translation
- ⚙️ World Feature
- ⚙️ Custom Properties
🚨 Events
🛠 Engine Layers
🧪 Resources
- 🧪 Examples