-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hopefully don't break anything don't murder me
- Loading branch information
1 parent
016d9d1
commit dc8950f
Showing
6 changed files
with
102 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,11 @@ | ||
# Done to increase the memory available to gradle. | ||
org.gradle.jvmargs=-Xmx1G | ||
# Gradle Properties | ||
org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 | ||
org.gradle.caching=true | ||
org.gradle.parallel=true | ||
|
||
# Fabric Properties | ||
# check these on https://fabricmc.net/develop | ||
minecraft_version=1.21 | ||
yarn_mappings=1.21+build.2 | ||
loader_version=0.15.11 | ||
|
||
org.gradle.caching.debug=false | ||
org.gradle.configureondemand=true | ||
# Enable advanced multi-module optimizations (share tiny-remaper instance between projects) | ||
fabric.loom.multiProjectOptimisation=true | ||
# Mod Properties | ||
mod_version=0.5.4 | ||
maven_group=net.modfest | ||
archives_base_name=fireblanket | ||
|
||
# Dependencies | ||
fabric_version=0.100.4+1.21 | ||
baseVersion = 0.5.4 | ||
branch = 1.21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[versions] | ||
loom = "1.7.+" | ||
|
||
mc = "1.21" | ||
fl = "0.15.11" | ||
yarn = "1.21+build.9" | ||
fapi = "0.100.7+1.21" | ||
|
||
nettyIoUring = "0.0.15.Final" | ||
zstd = "1.5.5-5" | ||
|
||
sodium = "mc1.21-0.5.9" | ||
worldeditCore = "7.3.3" | ||
worldeditFabric = "7.4.0-SNAPSHOT" | ||
|
||
[plugins] | ||
loom = { id = "fabric-loom", version.ref = "loom" } | ||
|
||
[libraries] | ||
mc = { group = "mojang", name = "minecraft", version.ref = "mc" } | ||
fl = { group = "net.fabricmc", name = "fabric-loader", version.ref = "fl" } | ||
yarn = { group = "net.fabricmc", name = "yarn", version.ref = "yarn" } | ||
fapi = { group = "net.fabricmc.fabric-api", name = "fabric-api", version.ref = "fapi" } | ||
|
||
nettyIoUringClasses = { group = "io.netty.incubator", name = "netty-incubator-transport-classes-io_uring", version.ref = "nettyIoUring" } | ||
nettyIoUringNative = { group = "io.netty.incubator", name = "netty-incubator-transport-native-io_uring", version.ref = "nettyIoUring" } | ||
zstd = { group = "com.github.luben", name = "zstd-jni", version.ref = "zstd" } | ||
|
||
sodium = { group = "maven.modrinth", name = "sodium", version.ref = "sodium" } | ||
worldeditCore = { group = "com.sk89q.worldedit", name = "worldedit-core", version.ref = "worldeditCore" } | ||
worldeditFabric = { group = "com.sk89q.worldedit", name = "worldedit-fabric-mc1.21", version.ref = "worldeditFabric" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
pluginManagement { | ||
repositories { | ||
maven { | ||
name = 'Fabric' | ||
url = 'https://maven.fabricmc.net/' | ||
} | ||
mavenCentral() | ||
maven { url 'https://maven.fabricmc.net/' } | ||
gradlePluginPortal() | ||
} | ||
} | ||
} | ||
|
||
dependencyResolutionManagement { | ||
versionCatalogs { | ||
create("libs") { | ||
from(files("libs.versions.toml")) | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters