Skip to content

Commit

Permalink
Fix for 1.20.5
Browse files Browse the repository at this point in the history
Hopefully this fixes the gradle issues!
  • Loading branch information
coltonk9043 committed May 5, 2024
1 parent 7d8c249 commit eba1a09
Show file tree
Hide file tree
Showing 13 changed files with 623 additions and 197 deletions.
9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#
# https://help.github.com/articles/dealing-with-line-endings/
#
# Linux start script should use lf
/gradlew text eol=lf

# These are Windows script files and should use crlf
*.bat text eol=crlf

10 changes: 0 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,6 @@ repositories {
// for more information about repositories.
}

loom {
splitEnvironmentSourceSets()
mods {
"aoba" {
sourceSet sourceSets.main
sourceSet sourceSets.client
}
}
}

dependencies {
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
Expand Down
92 changes: 0 additions & 92 deletions gradle.bat

This file was deleted.

10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx2G
org.gradle.jvmargs=-Xmx1G
org.gradle.parallel=true

# Fabric Properties
Expand All @@ -9,9 +9,9 @@ yarn_mappings=1.20.5+build.1
loader_version=0.15.11

# Mod Properties
mod_version = 1.4.1
maven_group = net.aoba
archives_base_name = Aoba
mod_version=1.4.1
maven_group=net.aoba
archives_base_name=Aoba

# Dependencies
fabric_version=0.97.8+1.20.5
fabric_version=0.97.8+1.20.5
18 changes: 9 additions & 9 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
pluginManagement {
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
mavenCentral()
gradlePluginPortal()
}
}
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
mavenCentral()
gradlePluginPortal()
}
}
Loading

0 comments on commit eba1a09

Please sign in to comment.