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
35 changes: 23 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '0.12-SNAPSHOT'
id 'fabric-loom' version "1.7-SNAPSHOT"
id 'maven-publish'
}

Expand All @@ -11,13 +11,19 @@ version = project.mod_version
group = project.maven_group

repositories {
// Add repositories to retrieve artifacts from in here.
// You should only use this when depending on other mods because
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
maven { url 'https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/' }
maven { url 'https://jitpack.io' }
maven { url 'https://jitpack.io'}
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}

}

Expand All @@ -27,8 +33,12 @@ dependencies {
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modImplementation "software.bernie.geckolib:geckolib-fabric-1.19:${project.geckolib}"
modImplementation "com.github.quiqueck:BCLib:${project.bclib}"
modImplementation "software.bernie.geckolib:geckolib-fabric-1.20.1:${project.geckolib}"

modImplementation "com.github.quiqueck:BCLib:${project.bclib_version}"
modImplementation "com.github.quiqueck:WunderLib:${project.wunderlib_version}"

modRuntimeOnly "maven.modrinth:no-chat-reports:Fabric-1.20.1-v2.2.2"
}

processResources {
Expand Down Expand Up @@ -58,12 +68,13 @@ loom {
runDir "build/datagen"
}
}
accessWidenerPath = file("src/main/resources/mantori.accesswidener")
}

sourceSets { main { resources { srcDirs += dataOutput } } }


java {
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar()
}

Expand Down
17 changes: 9 additions & 8 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx8G

minecraft_version=1.19.2
yarn_mappings=1.19.2+build.8
loader_version=0.14.9
geckolib=3.1.26
bclib=2.1.1
minecraft_version=1.20.1
yarn_mappings=1.20.1+build.9
loader_version=0.15.11
geckolib=4.4.7
bclib_version=3.0.14
wunderlib_version=1.1.5

#Fabric api
fabric_version=0.60.0+1.19.2
fabric_version=0.92.2+1.20.1

# Mod Properties
mod_version = 1.1.2-1.19.2
mod_version = 1.1.3-1.20.1
maven_group = net.mantori
archives_base_name = mantori-1.19.2
archives_base_name = mantori

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-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
51 changes: 33 additions & 18 deletions gradlew
100644 → 100755

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

181 changes: 92 additions & 89 deletions gradlew.bat

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

Binary file added lib/groovy-xml-4.0.2-sources.jar
Binary file not shown.
Loading