1
mirror of https://github.com/Shiewk/ViewServerResources.git synced 2026-04-28 03:44:17 +02:00

Allow management of whitelisted URLs and hosts through Mod Menu

This commit is contained in:
Shy
2024-08-24 16:31:38 +02:00
parent 45d1c075f8
commit f09aeadc6e
8 changed files with 206 additions and 1 deletions
+12
View File
@@ -17,6 +17,17 @@ 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.
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
}
dependencies {
@@ -27,6 +38,7 @@ 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:modmenu:11.0.1"
}
processResources {