WIP: implement mod #1
3 changed files with 12 additions and 3 deletions
11
build.gradle
11
build.gradle
|
@ -11,7 +11,11 @@ base {
|
|||
}
|
||||
|
||||
repositories {
|
||||
maven { url 'https://repo.hypixel.net/repository/Hypixel/' }
|
||||
maven { url 'https://repo.hypixel.net/repository/Hypixel/' },
|
||||
maven {
|
||||
name 'Xander Maven'
|
||||
url 'https://maven.isxander.dev/releases'
|
||||
}
|
||||
}
|
||||
|
||||
loom {
|
||||
|
@ -32,7 +36,10 @@ dependencies {
|
|||
|
||||
// Fabric API. This is technically optional, but you probably want it anyway.
|
||||
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
||||
|
||||
// other deps
|
||||
modImplementation 'net.hypixel:mod-api:1.0.1'
|
||||
modImplementation "dev.isxander:yet-another-config-lib:${project.yacl_version}"
|
||||
}
|
||||
|
||||
processResources {
|
||||
|
@ -81,4 +88,4 @@ publishing {
|
|||
// The repositories here will be used for publishing your artifact, not for
|
||||
// retrieving dependencies.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -16,3 +16,4 @@ archives_base_name=zombies-utils
|
|||
|
||||
# Dependencies
|
||||
fabric_version=0.123.2+1.21.5
|
||||
yacl_version=3.6.6+1.21.5-fabric
|
||||
|
|
|
@ -33,7 +33,8 @@
|
|||
"minecraft": "~1.21.5",
|
||||
"java": ">=21",
|
||||
"fabric-api": "*",
|
||||
"hypixel-mod-api": ">=1.0.1"
|
||||
"hypixel-mod-api": ">=1.0.1",
|
||||
"yet_another_config_lib_v3": ">=3.6.6"
|
||||
},
|
||||
"suggests": {}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue