Skip to content

Commit

Permalink
Update gradle properties and Origin version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Provismet committed Jul 20, 2024
1 parent 09bf613 commit 28c4e03
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 37 deletions.
60 changes: 25 additions & 35 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,27 @@ version = project.mod_version + "+" + project.minecraft_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 {
name = "Ladysnake Libs"
mavenLocal()
mavenCentral()
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}

filter {
includeGroup "maven.modrinth"
}

}
maven {
name = "QuiltMC"
url = "https://maven.quiltmc.org/repository/release"
}
maven {
name = 'Ladysnake Mods'
url = 'https://maven.ladysnake.org/releases'
}
maven {
Expand All @@ -54,34 +68,10 @@ repositories {
includeGroup "com.jamieswhiteshirt"
}
}
maven {
url "https://masa.dy.fi/maven"
}
maven {
url "https://jitpack.io"
}
maven {
url "https://maven.shedaniel.me/"
}
maven {
url "https://maven.terraformersmc.com/"
}
maven {
name = "QuiltMC"
url = "https://maven.quiltmc.org/repository/release"
}
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
mavenLocal()
maven { url "https://masa.dy.fi/maven" }
maven { url "https://jitpack.io" }
maven { url "https://maven.shedaniel.me/" }
maven { url "https://maven.terraformersmc.com/" }
}

dependencies {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ org.gradle.jvmargs=-Xmx1G
# check these on https://fabricmc.net/develop
minecraft_version=1.20.2
yarn_mappings=1.20.2+build.4
loader_version=0.15.2
loader_version=0.15.10

# Mod Properties
mod_version = 1.6.1
Expand All @@ -15,7 +15,7 @@ modid = proviorigins

# Dependencies
fabric_version=0.91.2+1.20.2
origins_version=1.12.0
origins_version=1.12.10
extrade_oa_version=1.1.0
pehkui_version=3.7.5
dynlights_version=mYl4RvKg
Expand Down

0 comments on commit 28c4e03

Please sign in to comment.