Update gradle and mods versions
This commit is contained in:
24
build.gradle
24
build.gradle
@ -8,7 +8,7 @@ base {
|
||||
archivesName = project.archives_base_name
|
||||
}
|
||||
|
||||
String buildNumber = System.getenv("RUN_NUMBER")
|
||||
String buildNumber = 30
|
||||
version = "${mod_version}+${libs.versions.minecraft.get()}" + (buildNumber != null ? "-${buildNumber}" : "")
|
||||
group = project.maven_group
|
||||
|
||||
@ -20,14 +20,25 @@ repositories {
|
||||
// for more information about repositories.
|
||||
maven { url = "https://maven.terraformersmc.com/releases/" } // Mod Menu
|
||||
maven { url = "https://maven.jamieswhiteshirt.com/libs-release" } // Reach Entity Attributes
|
||||
maven { url = "https://modmaven.dev/" } // Flywheel
|
||||
maven { url = "https://mvn.devos.one/releases" } // Porting Lib releases
|
||||
maven { url = "https://mvn.devos.one/snapshots" } // Create and several dependencies
|
||||
maven { url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven" } // Forge Config API Port
|
||||
maven { url = 'https://maven.quiltmc.org/repository/release' } // QuiltMC
|
||||
maven { url = 'https://maven.parchmentmc.org' } // ParchmentMC
|
||||
maven { url = 'https://maven.fabricmc.net/' } // FabricMC
|
||||
maven { // Fabric ASM for Porting Lib
|
||||
url = "https://jitpack.io/"
|
||||
content { includeGroupAndSubgroups("com.github") }
|
||||
}
|
||||
maven { url = "https://maven.tterrag.com/" } // Flywheel
|
||||
maven { url = "https://mvn.devos.one/snapshots/" } // Create and several dependencies
|
||||
maven { url = "https://mvn.devos.one/releases/" } // Porting Lib releases
|
||||
maven { url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven" } // Forge Config API Port
|
||||
maven {
|
||||
url = "https://maven.createmod.net"
|
||||
content {
|
||||
includeGroupAndSubgroups("net.createmod")
|
||||
includeGroupAndSubgroups("dev.engine-room")
|
||||
includeGroupAndSubgroups("com.simibubi")
|
||||
}
|
||||
} // Flywheel, Registrate, Create
|
||||
|
||||
exclusiveContent {
|
||||
forRepository {
|
||||
@ -58,6 +69,9 @@ dependencies {
|
||||
// Create - dependencies are added transitively
|
||||
modImplementation libs.create
|
||||
|
||||
// Porting Lib - dependencies are added transitively
|
||||
modImplementation libs.porting.lib.base
|
||||
|
||||
// Thin Air
|
||||
modImplementation libs.thinair
|
||||
|
||||
|
||||
Reference in New Issue
Block a user