mirror of
https://github.com/AlmostReliable/almostunified.git
synced 2024-11-14 11:15:23 -05:00
update to 1.21.1
This commit is contained in:
parent
ff9973a95e
commit
76f2439cc1
6 changed files with 13 additions and 13 deletions
|
@ -35,7 +35,7 @@ dependencies {
|
|||
modCompileOnly("mezz.jei:jei-$minecraftVersion-common-api:$jeiVersion") // required for jei plugin
|
||||
modCompileOnly("me.shedaniel:RoughlyEnoughItems-api:$reiVersion") // required for rei plugin
|
||||
compileOnly("me.shedaniel:REIPluginCompatibilities-forge-annotations:9.+") // required to disable rei compat layer
|
||||
modCompileOnly("dev.emi:emi-xplat-intermediary:$emiVersion+$minecraftVersion:api") // required for emi plugin
|
||||
modCompileOnly("dev.emi:emi-xplat-intermediary:$emiVersion+1.21:api") // required for emi plugin TODO: replace on EMI release
|
||||
}
|
||||
|
||||
buildConfig {
|
||||
|
|
|
@ -39,7 +39,7 @@ dependencies {
|
|||
// compile time
|
||||
modCompileOnly("mezz.jei:jei-$minecraftVersion-fabric-api:$jeiVersion") // required for common jei plugin
|
||||
modCompileOnly("me.shedaniel:RoughlyEnoughItems-api-fabric:$reiVersion") // required for common rei plugin
|
||||
modCompileOnly("dev.emi:emi-fabric:$emiVersion+$minecraftVersion:api") // required for common emi plugin
|
||||
modCompileOnly("dev.emi:emi-fabric:$emiVersion+1.21:api") // required for common emi plugin TODO: replace on EMI release
|
||||
|
||||
// runtime
|
||||
if (enableRuntimeRecipeViewer == "true") {
|
||||
|
@ -47,7 +47,7 @@ dependencies {
|
|||
when (fabricRecipeViewer) {
|
||||
"jei" -> "mezz.jei:jei-$minecraftVersion-fabric:$jeiVersion"
|
||||
"rei" -> "me.shedaniel:RoughlyEnoughItems-fabric:$reiVersion"
|
||||
"emi" -> "dev.emi:emi-fabric:$emiVersion+$minecraftVersion"
|
||||
"emi" -> "dev.emi:emi-fabric:$emiVersion+1.21" // TODO: replace on EMI release
|
||||
else -> throw GradleException("Invalid fabricRecipeViewer value: $fabricRecipeViewer")
|
||||
}
|
||||
)
|
||||
|
|
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
|
@ -3,7 +3,7 @@
|
|||
pipeline {
|
||||
agent any
|
||||
tools {
|
||||
jdk "jdk-17.0.1"
|
||||
jdk "jdk-21"
|
||||
}
|
||||
stages {
|
||||
stage('Clean') {
|
||||
|
|
|
@ -65,7 +65,7 @@ dependencies {
|
|||
// TODO go back to API when solved: https://github.com/architectury/architectury-loom/issues/204
|
||||
modCompileOnly("me.shedaniel:RoughlyEnoughItems-neoforge:$reiVersion") // required for common rei plugin
|
||||
modLocalRuntime("dev.architectury:architectury-neoforge:13.0.6") // TODO: Remove on new REI version
|
||||
modCompileOnly("dev.emi:emi-neoforge:$emiVersion+$minecraftVersion:api") // required for common emi plugin
|
||||
modCompileOnly("dev.emi:emi-neoforge:$emiVersion+1.21:api") // required for common emi plugin TODO: replace on EMI release
|
||||
|
||||
// runtime
|
||||
forgeRuntimeLibrary("org.junit.jupiter:junit-jupiter-api:$junitVersion")
|
||||
|
@ -73,7 +73,7 @@ dependencies {
|
|||
when (neoforgeRecipeViewer) {
|
||||
"jei" -> modLocalRuntime("mezz.jei:jei-$minecraftVersion-neoforge:$jeiVersion") { isTransitive = false }
|
||||
"rei" -> modLocalRuntime("me.shedaniel:RoughlyEnoughItems-neoforge:$reiVersion")
|
||||
"emi" -> modLocalRuntime("dev.emi:emi-neoforge:$emiVersion+$minecraftVersion")
|
||||
"emi" -> modLocalRuntime("dev.emi:emi-neoforge:$emiVersion+1.21") //TODO: replace on EMI release
|
||||
else -> throw GradleException("Invalid forgeRecipeViewer value: $neoforgeRecipeViewer")
|
||||
}
|
||||
}
|
||||
|
|
|
@ -93,7 +93,7 @@ subprojects {
|
|||
"minecraft"("com.mojang:minecraft:$minecraftVersion")
|
||||
"mappings"(loom.layered {
|
||||
officialMojangMappings()
|
||||
parchment("org.parchmentmc.data:parchment-$minecraftVersion:$parchmentVersion@zip")
|
||||
parchment("org.parchmentmc.data:parchment-1.21:$parchmentVersion@zip") // TODO: replace on aprchment update
|
||||
})
|
||||
|
||||
/**
|
||||
|
|
|
@ -5,7 +5,7 @@ enabledPlatforms = fabric,neoforge
|
|||
enableAccessWidener = false
|
||||
|
||||
# Minecraft
|
||||
minecraftVersion = 1.21
|
||||
minecraftVersion = 1.21.1
|
||||
|
||||
# Mod
|
||||
modVersion = 0.7.2
|
||||
|
@ -22,18 +22,18 @@ parchmentVersion = 2024.07.28
|
|||
|
||||
# Recipe Viewers
|
||||
enableRuntimeRecipeViewer = true
|
||||
jeiVersion = 19.5.2.66
|
||||
reiVersion = 16.0.744
|
||||
jeiVersion = 19.8.4.113
|
||||
reiVersion = 16.0.754
|
||||
emiVersion = 1.1.10
|
||||
fabricRecipeViewer = rei
|
||||
neoforgeRecipeViewer = emi
|
||||
|
||||
# Fabric Dependencies
|
||||
fabricLoaderVersion = 0.15.11
|
||||
fabricApiVersion = 0.100.1
|
||||
fabricLoaderVersion = 0.16.2
|
||||
fabricApiVersion = 0.102.1
|
||||
|
||||
# NeoForge Dependencies
|
||||
neoforgeVersion = 21.0.143
|
||||
neoforgeVersion = 21.1.20
|
||||
|
||||
# Github
|
||||
githubUser = AlmostReliable
|
||||
|
|
Loading…
Reference in a new issue