Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysdh540 committed Feb 12, 2024
1 parent e9b678d commit 44afe74
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions buildSrc/src/main/java/SubprojectsPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public void apply(@NotNull Project project) {
maven("https://jitpack.io");
maven("https://maven.tterrag.com",
"com.simibubi.create", "com.jozufozu.flywheel", "com.tterrag.registrate");
maven("https://raw.githubusercontent.com/Fuzss/modresources/main/maven/");

maven("https://api.modrinth.com/maven", "maven.modrinth");
maven("https://cursemaven.com", "curse.maven");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import dev.rdh.createunlimited.Util;

public enum SupportedMinecraftVersion {
v1_18_2,
v1_19_2,
v1_20_1,
;
Expand Down
4 changes: 3 additions & 1 deletion fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ dependencies {
}

// have deprecated modules present at runtime only
modLocalRuntime("net.fabricmc.fabric-api:fabric-api-deprecated:${"fabric_api"()}+${"minecraft_version"()}")
if("minecraft_version"() != "1.18.2") {
modLocalRuntime("net.fabricmc.fabric-api:fabric-api-deprecated:${"fabric_api"()}+${"minecraft_version"()}")
}

// Dev Env Optimizations
if (rootProject.hasProperty("lazydfu")) {
Expand Down
4 changes: 3 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@ forgix_version = 1.2.6
shadow_version = 8.1.1

# the mc version to compile against (see their respective property files for version-specific stuff)
mcVer = 1.20.1
mcVer = 1.19.2
minimum_create_version = 0.5.1

# the actual stuff
mod_version = 0.6.0
maven_group = dev.rdh.createunlimited
archives_base_name = createunlimited

fabric = 0.15.3

# compiler go brrrrr
manifold_version = 2024.1.1
strip_lvts = true
Expand Down
5 changes: 2 additions & 3 deletions versionProperties/1.19.2.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ quilt = 22
parchment = 2022.11.27

# Fabric - https://fabricmc.net/develop/
fabric = 0.14.25
fabric_api = 0.76.0

# Forge - https://files.minecraftforge.net/net/minecraftforge/forge/index_1.19.html
forge=43.2.4
forge = 43.2.4

## Create
# https://mvn.devos.one/#/snapshots/com/simibubi/create/create-fabric-1.19.2
create_fabric = 0.5.1-c-build.1160
create_fabric = 0.5.1-f-build.1221
# https://github.com/Creators-of-Create/Create/wiki/Depending-on-Create
create_forge = 0.5.1.f-46
registrate = MC1.19-1.1.5
Expand Down
3 changes: 1 addition & 2 deletions versionProperties/1.20.1.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ quilt = 20
parchment = 2023.09.03

# Fabric - https://fabricmc.net/develop/
fabric = 0.14.25
fabric_api = 0.86.0

# Forge - https://files.minecraftforge.net/net/minecraftforge/forge/index_1.19.html
forge = 47.1.43

## Create
# https://mvn.devos.one/#/snapshots/com/simibubi/create/create-fabric-1.20.1
create_fabric = 0.5.1-d-build.1161
create_fabric = 0.5.1-f-build.1232
# https://github.com/Creators-of-Create/Create/wiki/Depending-on-Create
create_forge = 0.5.1.f-26
registrate = MC1.20-1.3.3
Expand Down

0 comments on commit 44afe74

Please sign in to comment.