Skip to content

Commit

Permalink
port to 1.20.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredlll08 committed Jan 3, 2024
1 parent f04c393 commit f90851d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package com.blamejared.clumps.gradle

object Versions {
const val MOD = "13.0.0"
const val MOD = "14.0.0"
const val JAVA = "17"
const val MINECRAFT = "1.20.2"
const val FABRIC_LOADER = "0.14.22"
const val FABRIC = "0.89.2+1.20.2"
const val FORGE = "48.0.1"
const val FORGE_LOADER = "[41,)"
const val NEO_FORGE = "20.2.86"
const val MINECRAFT = "1.20.3"
const val FABRIC_LOADER = "0.15.3"
const val FABRIC = "0.91.1+1.20.3"
const val FORGE = "49.0.2"
const val FORGE_LOADER = "[49,)"
const val NEO_FORGE = "20.3.8-beta"
const val NEO_FORGE_LOADER= "[1,)"
}
6 changes: 6 additions & 0 deletions forge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ dependencies {
annotationProcessor("org.spongepowered:mixin:0.8.5-SNAPSHOT:processor")
}

sourceSets.configureEach {
val dir = layout.buildDirectory.dir("sourcesSets/$this.name")
this.output.setResourcesDir(dir)
this.java.destinationDirectory.set(dir)
}

tasks.create<TaskPublishCurseForge>("publishCurseForge") {
dependsOn(tasks.jar)
apiToken = GMUtils.locateProperty(project, "curseforgeApiToken") ?: 0
Expand Down

0 comments on commit f90851d

Please sign in to comment.