Skip to content
Merged
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
30 changes: 29 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,19 @@ base {
}

repositories {

exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
// Scheduler, Queue, MultiDim, AutoJSON
maven { url "https://theo.is-a.dev/maven-repo/" }
}

loom {
Expand Down Expand Up @@ -53,6 +65,22 @@ dependencies {

// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

// Theo's libraries
include(modImplementation("dev.drtheo:multidim:${project.multidim_version}")) {
exclude(group: "net.fabricmc.fabric-api")
}
include(modImplementation("dev.drtheo:scheduler:${project.scheduler_version}")) {
exclude(group: "net.fabricmc.fabric-api")
}
include(modImplementation("dev.drtheo:queue:${project.queue_version}")) {
exclude(group: "net.fabricmc.fabric-api")
}

// Duzo's libaries
include(modImplementation("maven.modrinth:animator:${project.animation_version}")) {
exclude(group: "net.fabricmc.fabric-api")
}
}

processResources {
Expand Down
8 changes: 6 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ yarn_mappings=1.20.1+build.10
loader_version=0.16.10

# Mod Properties
mod_version=1.1.8
mod_version=1.1.9
maven_group=dev.amble.lib
archives_base_name=amble
mod_id=amblekit
mod_version_qualifier=beta

# Dependencies
fabric_version=0.92.3+1.20.1
fabric_version=0.92.3+1.20.1
multidim_version = 2.1.4
scheduler_version = 1.1.0
queue_version = 1.1.0-1.20
animation_version = 1.0.0.13-1.20.1-release