Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit e6f8f74

Browse files
committed
compact repository declarations
1 parent 83dc56a commit e6f8f74

File tree

5 files changed

+14
-60
lines changed

5 files changed

+14
-60
lines changed

1.16_combat-6/build.gradle.kts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ version = "${project.property("version")}+${project.property("minecraft_cts8")}"
88
base.archivesName = "AxolotlClient"
99

1010
repositories {
11-
maven {
12-
name = "CombatReforged"
13-
url = uri("https://maven.fabric.rizecookey.net/")
14-
}
11+
maven("https://maven.fabric.rizecookey.net/")
1512
}
1613

1714
loom {

1.20/build.gradle.kts

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,12 @@ loom {
2020
}
2121

2222
repositories {
23-
exclusiveContent {
24-
forRepository {
25-
maven {
26-
name = "Modrinth"
27-
url = uri("https://api.modrinth.com/maven")
28-
}
29-
}
30-
filter {
23+
maven("https://api.modrinth.com/maven") {
24+
content {
3125
includeGroup("maven.modrinth")
3226
}
3327
}
34-
maven {
35-
name = "Noxcrew/Public"
36-
url = uri("https://maven.noxcrew.com/public")
37-
}
28+
maven("https://maven.noxcrew.com/public")
3829
maven("https://maven.enginehub.org/repo/")
3930
}
4031

1.21.4/build.gradle.kts

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,10 @@ loom {
2222
}
2323

2424
repositories {
25-
maven {
26-
name = "Noxcrew/Public"
27-
url = uri("https://maven.noxcrew.com/public")
28-
}
25+
maven("https://maven.noxcrew.com/public")
2926
maven("https://maven.enginehub.org/repo/")
30-
31-
exclusiveContent {
32-
forRepository {
33-
maven {
34-
name = "Modrinth"
35-
url = uri("https://api.modrinth.com/maven")
36-
}
37-
}
38-
filter {
27+
maven("https://api.modrinth.com/maven") {
28+
content {
3929
includeGroup("maven.modrinth")
4030
}
4131
}

1.21/build.gradle.kts

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,8 @@ loom {
2020
}
2121

2222
repositories {
23-
exclusiveContent {
24-
forRepository {
25-
maven {
26-
name = "Modrinth"
27-
url = uri("https://api.modrinth.com/maven")
28-
}
29-
}
30-
maven {
31-
name = "Noxcrew/Public"
32-
url = uri("https://maven.noxcrew.com/public")
33-
}
34-
maven("https://maven.enginehub.org/repo/")
35-
filter {
23+
maven("https://api.modrinth.com/maven") {
24+
content {
3625
includeGroup("maven.modrinth")
3726
}
3827
}

build.gradle.kts

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,11 @@ repositories {
2424

2525
allprojects {
2626
repositories {
27-
maven {
28-
name = "TerraformersMC Maven"
29-
url = uri("https://maven.terraformersmc.com/releases/")
30-
}
31-
maven {
32-
name = "Quilt"
33-
url = uri("https://maven.quiltmc.org/repository/release")
34-
}
35-
maven {
36-
url = uri("https://moehreag.duckdns.org/maven/releases")
37-
}
38-
maven {
39-
url = uri("https://moehreag.duckdns.org/maven/snapshots")
40-
}
41-
maven {
42-
name = "ParchmentMC"
43-
url = uri("https://maven.parchmentmc.org")
44-
}
27+
maven("https://maven.terraformersmc.com/releases/")
28+
maven("https://maven.quiltmc.org/repository/release")
29+
maven("https://moehreag.duckdns.org/maven/releases")
30+
maven("https://moehreag.duckdns.org/maven/snapshots")
31+
maven("https://maven.parchmentmc.org")
4532
mavenLocal()
4633
mavenCentral()
4734
}

0 commit comments

Comments
 (0)