Skip to content

Commit dc86528

Browse files
committed
Port to 1.21.2
1 parent b8e63e1 commit dc86528

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ version = GMUtils.updatingVersion(Versions.MOD)
1616

1717
tasks.create("postDiscord") {
1818
val taskName = "publishCurseForge"
19-
dependsOn(":fabric:${taskName}", ":forge:${taskName}", ":neoforge:${taskName}")
19+
dependsOn(":fabric:${taskName}",/* ":forge:${taskName}", */":neoforge:${taskName}")
2020
doLast {
2121
try {
2222

@@ -32,13 +32,13 @@ tasks.create("postDiscord") {
3232
val embed = Embed()
3333
val downloadSources = StringJoiner("\n")
3434

35-
mapOf(Pair("fabric", "<:fabric:932163720568782878>"), Pair("forge", "<:forge:932163698003443804>"), Pair("neoforge", "<:neoforged:1184738260371644446>"))
35+
mapOf(Pair("fabric", "<:fabric:932163720568782878>"), /*Pair("forge", "<:forge:932163698003443804>"),*/ Pair("neoforge", "<:neoforged:1184738260371644446>"))
3636
.filter {
3737
project(":${it.key}").ext.has("curse_file_url")
3838
}.map { "${it.value} [${it.key.capitalize(Locale.ENGLISH)}](${project(":${it.key}").ext.get("curse_file_url")})" }
3939
.forEach { downloadSources.add(it) }
4040

41-
listOf("common", "fabric", "forge", "neoforge")
41+
listOf("common", "fabric", /*"forge",*/ "neoforge")
4242
.map { project(":${it}") }
4343
.map { "<:maven:932165250738970634> `\"${it.group}:${it.base.archivesName.get()}:${it.version}\"`" }
4444
.forEach { downloadSources.add(it) }

buildSrc/src/main/kotlin/com/blamejared/Versions.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package com.blamejared
33
object Versions {
44
const val MOD = "1.0"
55
const val JAVA = "21"
6-
const val MINECRAFT = "1.21.1"
7-
const val FABRIC_LOADER = "0.15.11"
8-
const val FABRIC = "0.102.1+1.21.1"
9-
const val FORGE = "52.0.2"
10-
const val FORGE_LOADER = "[52,)"
11-
const val NEO_FORGE = "21.1.8"
6+
const val MINECRAFT = "1.21.2"
7+
const val FABRIC_LOADER = "0.16.9"
8+
const val FABRIC = "0.106.1+1.21.2"
9+
const val FORGE = "52.0.2" // 1.21.1
10+
const val FORGE_LOADER = "[52,)" // 1.21.1
11+
const val NEO_FORGE = "21.2.1-beta"
1212
const val NEO_FORGE_LOADER= "[4,)"
1313
}

fabric/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import net.darkhax.curseforgegradle.Constants as CFG_Constants
66

77
plugins {
88
id("blamejared-modloader-conventions")
9-
id("fabric-loom") version "1.6-SNAPSHOT"
9+
id("fabric-loom") version "1.7-SNAPSHOT"
1010
id("com.modrinth.minotaur")
1111
}
1212

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ plugins {
1717
rootProject.name = "searchables"
1818
include("common")
1919
include("fabric")
20-
include("forge")
20+
//include("forge")
2121
include("neoforge")

0 commit comments

Comments
 (0)