Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 5 additions & 18 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '1.2-SNAPSHOT'
id 'fabric-loom' version '1.7-SNAPSHOT'
id 'maven-publish'
}

Expand All @@ -11,10 +11,8 @@ version = project.mod_version
group = project.maven_group

repositories {
maven { url = "https://maven.terraformersmc.com/" }
maven { url = "https://ueaj.dev/maven/" }
maven { url = "https://api.modrinth.com/maven/" }
maven { url = "https://maven.gegy.dev/" }
maven { url = 'https://maven.terraformersmc.com/' }
maven { url = 'https://api.modrinth.com/maven/' }
}

dependencies {
Expand All @@ -26,22 +24,11 @@ dependencies {
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

// ARRP. This is for generating a runtime resource pack (conditionally, as well)
modImplementation "net.devtech:arrp:${project.arrp_version}"
include "net.devtech:arrp:${project.arrp_version}"

// Mod Menu because config screen access from another place
modApi "com.terraformersmc:modmenu:${project.modmenu_version}"

// Dashloader (compatibility)
modCompileOnly "maven.modrinth:dashloader:${project.dashloader_version}"

// a bit less load time
modLocalRuntime "maven.modrinth:lazydfu:0.1.3"

// UI library
modImplementation "dev.lambdaurora:spruceui:${project.spruceui_version}"
include "dev.lambdaurora:spruceui:${project.spruceui_version}"
// Sodium for compatibility
modCompileOnlyApi "maven.modrinth:sodium:${project.sodium_version}"
}

processResources {
Expand Down
14 changes: 6 additions & 8 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
org.gradle.jvmargs=-Xmx2G

minecraft_version=1.20.1
yarn_mappings=1.20.1+build.1
loader_version=0.14.21
yarn_mappings=1.20.1+build.10
loader_version=0.15.11

fabric_version=0.84.0+1.20.1
fabric_version=0.92.2+1.20.1

mod_version = 0.9+1.20
mod_version = 0.10.1+1.20
maven_group = foundationgames
archives_base_name = enhancedblockentities

arrp_version=0.6.7
modmenu_version=7.1.0
spruceui_version=5.0.0+1.20
dashloader_version=5.0.0-beta.1+1.20.0
modmenu_version=7.2.2
sodium_version=mc1.20.1-0.5.10
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
41 changes: 28 additions & 13 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 19 additions & 16 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading