Skip to content

Commit 03be1a6

Browse files
committed
build(xaero): replace Modrinth publishing with Xaero's Maven repository
1 parent cf31345 commit 03be1a6

3 files changed

Lines changed: 14 additions & 5 deletions

File tree

build.gradle.kts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ configurations.all {
1515
}
1616

1717
repositories {
18+
// Modrinth
1819
maven {
1920
url = uri("https://api.modrinth.com/maven/")
2021
content {
@@ -30,6 +31,11 @@ repositories {
3031
name = "meteor-maven-snapshots"
3132
url = uri("https://maven.meteordev.org/snapshots")
3233
}
34+
// XaeroLib
35+
maven {
36+
name = "Xaero's Maven"
37+
url = uri("https://chocolateminecraft.com/maven")
38+
}
3339
mavenCentral()
3440
gradlePluginPortal()
3541
}
@@ -50,9 +56,9 @@ dependencies {
5056
implementation(libs.meteor.client)
5157

5258
// Xaero's Mods
59+
compileOnly(libs.xlib) // XaeroLib
5360
compileOnly(libs.xwm) // Xaero's World Map
5461
compileOnly(libs.xmm) // Xaero's Minimap
55-
compileOnly(files("libs\\xaerolib-fabric-26.1.2-1.1.13.jar"))
5662

5763
// Chest Tracker
5864
implementation(libs.whereisit)

gradle/libs.versions.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ meteor = "26.1.2-SNAPSHOT"
1616
baritone = "26.1-SNAPSHOT"
1717

1818
# Xaero's Mods
19+
# XaeroLib
20+
xlib = "1.1.13"
1921
# Xaero's World Map (https://modrinth.com/mod/xaeros-world-map/versions)
20-
xwm = "fabric-26.1.2-1.40.14"
22+
xwm = "1.40.14"
2123
# Xaero's Minimap (https://modrinth.com/mod/xaeros-minimap/versions)
22-
xmm = "fabric-26.1.2-25.3.11"
24+
xmm = "25.3.11"
2325

2426
# Where Is It (https://modrinth.com/mod/where-is-it-port/versions)
2527
whereisit = "2.7.4+26.1"
@@ -39,8 +41,9 @@ meteor-client = { module = "meteordevelopment:meteor-client", version.ref = "met
3941
baritone = { module = "meteordevelopment:baritone", version.ref = "baritone" }
4042

4143
# Xaero's Mods
42-
xwm = { module = "maven.modrinth:xaeros-world-map", version.ref = "xwm" }
43-
xmm = { module = "maven.modrinth:xaeros-minimap", version.ref = "xmm" }
44+
xlib = { module = "xaero.lib:xaerolib-fabric-26.1.2", version.ref = "xlib" }
45+
xwm = { module = "xaero.map:xaeroworldmap-fabric-26.1.2", version.ref = "xwm" }
46+
xmm = { module = "xaero.minimap:xaerominimap-fabric-26.1.2", version.ref = "xmm" }
4447

4548
# Where Is It
4649
whereisit = { module = "maven.modrinth:where-is-it-port", version.ref = "whereisit" }
-572 KB
Binary file not shown.

0 commit comments

Comments
 (0)