update dependencies
This commit is contained in:
+3
-20
@@ -17,23 +17,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://maven.siphalor.de/' }
|
||||
maven { url 'https://jitpack.io' }
|
||||
maven { url "https://maven.shedaniel.me/" }
|
||||
maven { url "https://maven.terraformersmc.com/releases/" }
|
||||
maven {
|
||||
name = 'Ladysnake Mods'
|
||||
url = 'https://ladysnake.jfrog.io/artifactory/mods'
|
||||
}
|
||||
maven {
|
||||
url = "https://api.modrinth.com/maven"
|
||||
}
|
||||
|
||||
maven {
|
||||
url = uri("https://ueaj.dev/maven")
|
||||
// for 0.4.2 and older
|
||||
// url uri("https://raw.githubusercontent.com/Devan-Kerman/Devan-Repo/master/")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -46,14 +32,9 @@ dependencies {
|
||||
// Fabric API. This is technically optional, but you probably want it anyway.
|
||||
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
||||
|
||||
// Uncomment the following line to enable the deprecated Fabric API modules.
|
||||
// These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time.
|
||||
|
||||
modImplementation "maven.modrinth:midnightlib:${project.midnightlib_version}"
|
||||
include "maven.modrinth:midnightlib:${project.midnightlib_version}"
|
||||
|
||||
modImplementation("me.shedaniel.cloth:cloth-config-fabric:$project.cloth_config_version")
|
||||
|
||||
// modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}"
|
||||
}
|
||||
|
||||
@@ -92,6 +73,7 @@ jar {
|
||||
}
|
||||
}
|
||||
|
||||
import com.modrinth.minotaur.dependencies.DependencyType
|
||||
import com.modrinth.minotaur.dependencies.ModDependency
|
||||
|
||||
modrinth {
|
||||
@@ -99,7 +81,8 @@ modrinth {
|
||||
uploadFile = remapJar // Tells Minotaur to use the remapped jar
|
||||
versionType = "alpha"
|
||||
dependencies = [
|
||||
new ModDependency('P7dR8mSH', 'required'), //required dependency on Fabric API
|
||||
new ModDependency('P7dR8mSH', DependencyType.REQUIRED), //required dependency on Fabric API
|
||||
new ModDependency('codAaoxh', DependencyType.EMBEDDED), //embedded midnightlib
|
||||
]
|
||||
}
|
||||
// configure the maven publication
|
||||
|
||||
Reference in New Issue
Block a user