diff options
| author | anhgelus <anhgelus.morhtuuzh@proton.me> | 2024-07-29 13:06:15 +0000 |
|---|---|---|
| committer | anhgelus <anhgelus.morhtuuzh@proton.me> | 2024-07-29 13:06:15 +0000 |
| commit | a0f75bb9fd47e95312c47802065af8e12a26eb00 (patch) | |
| tree | 2a1eedb4aee04ceae128e430c872b2c270d7be4c /build.gradle | |
| parent | fd66b7e84e5fb9557593359732dedca1842256f3 (diff) | |
feat(config): create config file with midnight lib
Diffstat (limited to 'build.gradle')
| -rw-r--r-- | build.gradle | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index 5b1eefd..ca323a3 100644 --- a/build.gradle +++ b/build.gradle @@ -16,6 +16,9 @@ repositories { // Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
+ maven {
+ url = "https://api.modrinth.com/maven"
+ }
}
loom {
@@ -39,6 +42,8 @@ dependencies { // Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
+ modImplementation "maven.modrinth:midnightlib:${project.midnightlib_version}"
+ include "maven.modrinth:midnightlib:${project.midnightlib_version}"
}
processResources {
|
