Skip to content

Commit

Permalink
1.20.4-1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticdrew committed Dec 9, 2023
1 parent cfd1657 commit 05cbbbf
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
}

plugins {
id 'fabric-loom' version '1.2-SNAPSHOT'
id 'fabric-loom' version '1.3-SNAPSHOT'
id 'maven-publish'
id 'idea'
id 'net.darkhax.curseforgegradle' version '1.+'
Expand Down
10 changes: 10 additions & 0 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -208,3 +208,13 @@ project.afterEvaluate {
projectTask.dependsOn build
}
}

// Merge the resources and classes into the same directory.
// This is done because java expects modules to be in a single directory.
// And if we have it in multiple we have to do performance intensive hacks like having the UnionFileSystem
// This will eventually be migrated to ForgeGradle so modders don't need to manually do it. But that is later.
sourceSets.each {
def dir = layout.buildDirectory.dir("sourcesSets/$it.name")
it.output.resourcesDir = dir
it.java.destinationDirectory = dir
}
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ curseforge_project_id=806044
modrinth_project_id=HIuqnQpi

# Common
minecraft_version=1.20.2
minecraft_version=1.20.4

# Forge
forge_version=48.0.13
forge_version=49.0.3

#neoforge
neoforge_version=20.2.14-beta
neoforge_version=20.4.0-beta

# Fabric
fabric_version=0.89.0+1.20.2
fabric_loader_version=0.14.22
fabric_version=0.91.1+1.20.4
fabric_loader_version=0.14.23

# Mod options
mod_name=Common Networking
Expand Down

0 comments on commit 05cbbbf

Please sign in to comment.