Skip to content

Commit

Permalink
Port to 1.20.4. Close #130
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredlll08 committed Jan 12, 2024
1 parent f90851d commit 77b2aaf
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class DefaultPlugin : Plugin<Project> {
project.plugins.apply(IdeaPlugin::class.java)

val idea = project.extensions.getByType<IdeaModel>()
idea.module.excludeDirs.addAll(setOf(project.file("run"), project.file("run_server"), project.file("run_client"), project.file("run_game_test")))
idea.module.excludeDirs.addAll(setOf(project.file("runs"), project.file("run"), project.file("run_server"), project.file("run_client"), project.file("run_game_test")))
}

private fun applyMavenPlugin(project: Project) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ package com.blamejared.clumps.gradle
object Versions {
const val MOD = "14.0.0"
const val JAVA = "17"
const val MINECRAFT = "1.20.3"
const val MINECRAFT = "1.20.4"
const val FABRIC_LOADER = "0.15.3"
const val FABRIC = "0.91.1+1.20.3"
const val FORGE = "49.0.2"
const val FABRIC = "0.93.1+1.20.4"
const val FORGE = "49.0.19"
const val FORGE_LOADER = "[49,)"
const val NEO_FORGE = "20.3.8-beta"
const val NEO_FORGE_LOADER= "[1,)"
const val NEO_FORGE = "20.4.89-beta"
const val NEO_FORGE_LOADER= "[2,)"
}
2 changes: 1 addition & 1 deletion neoforge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import net.darkhax.curseforgegradle.TaskPublishCurseForge
plugins {
id("com.blamejared.clumps.default")
id("com.blamejared.clumps.loader")
id("net.neoforged.gradle.userdev") version ("7.0.71")
id("net.neoforged.gradle.userdev") version ("7.0.81")
id("com.modrinth.minotaur")
}

Expand Down
4 changes: 2 additions & 2 deletions neoforge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ itemIcon = "${ITEM_ICON}"
config = "${MODID}.mixins.json"
[[dependencies.${MODID}]]
modId = "neoforge"
mandatory = true
type = "required"
versionRange = "${NEO_FORGE_LOADER}"
ordering = "NONE"
side = "BOTH"
[[dependencies.${MODID}]]
modId = "minecraft"
mandatory = true
type = "required"
versionRange = "[${MINECRAFT}]"
ordering = "NONE"
side = "BOTH"

0 comments on commit 77b2aaf

Please sign in to comment.