Skip to content

Commit

Permalink
Port to 1.20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredlll08 committed Jan 12, 2024
1 parent a2b21de commit b3512d9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Expand Up @@ -161,7 +161,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
@@ -1,13 +1,13 @@
package com.blamejared.ambientenvironment.gradle

object Versions {
const val MOD = "13.0.0"
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
Expand Up @@ -7,7 +7,7 @@ import net.darkhax.curseforgegradle.TaskPublishCurseForge
plugins {
id("com.blamejared.ambientenvironment.default")
id("com.blamejared.ambientenvironment.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
Expand Up @@ -15,13 +15,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 b3512d9

Please sign in to comment.