https://github.com/enaium/fabric-mod-h2database
https://github.com/enaium/fabric-mod-h2database
database fabric h2 jdbc minecraft mod
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/enaium/fabric-mod-h2database
- Owner: Enaium
- License: mpl-2.0
- Created: 2025-06-01T15:21:31.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-06-01T15:40:53.000Z (about 1 year ago)
- Last Synced: 2025-07-20T09:16:50.186Z (12 months ago)
- Topics: database, fabric, h2, jdbc, minecraft, mod
- Homepage:
- Size: 70.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fabric Database H2
[](https://github.com/Enaium/fabric-mod-h2database/releases)
[](https://www.curseforge.com/minecraft/mc-mods/fabric-database-h2)
[](https://modrinth.com/mod/fabric-database-h2)
This is a mod that enables the use of the H2 database for Fabric mods.
Note: This does not add content! This is a dependency that other mods use for compatibility.
This mod works independently of the Minecraft version used, as it only requires Fabric Loader to be available.
## Installation Guide
### For Development (Mod Developers)
To use Fabric Database H2 as a dependency in your Fabric mod:
1. Add the following to your `build.gradle` or `build.gradle.kts`:
**Groovy (build.gradle):**
```groovy
repositories {
mavenCentral()
}
dependencies {
modImplementation 'cn.enaium:fabric-database-h2:'
}
```
**Kotlin DSL (build.gradle.kts):**
```kotlin
repositories {
mavenCentral()
}
dependencies {
modImplementation("cn.enaium:fabric-database-h2:")
}
```
Replace `` with the latest version from the [releases page](https://github.com/Enaium/fabric-mod-h2database/releases).
2. Refresh your dependencies and import as usual.
### For Players
1. Download the latest release from one of the following:
- [CurseForge](https://www.curseforge.com/minecraft/mc-mods/fabric-database-h2)
- [Modrinth](https://modrinth.com/mod/fabric-database-h2)
- [GitHub Releases](https://github.com/Enaium/fabric-mod-h2database/releases)
2. Place the downloaded `.jar` file into your Minecraft `mods` folder.
3. Make sure you have [Fabric Loader](https://fabricmc.net/use/) installed.
4. Launch Minecraft as usual.