aboutsummaryrefslogtreecommitdiff
path: root/build-logic/src/main/kotlin/firmament.repositories.gradle.kts
blob: 07a5709e512fa1145dbdbd16d0609de3d2b1835c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
repositories {
	mavenCentral()
	maven("https://maven.terraformersmc.com/releases/")
	maven("https://maven.shedaniel.me")
	maven("https://maven.fabricmc.net")
	maven("https://pkgs.dev.azure.com/djtheredstoner/DevAuth/_packaging/public/maven/v1")
	maven("https://api.modrinth.com/maven") {
		content {
			includeGroup("maven.modrinth")
		}
	}
	maven("https://repo.sleeping.town") {
		content {
			includeGroup("com.unascribed")
		}
	}
	ivy("https://github.com/HotswapProjects/HotswapAgent/releases/download") {
		patternLayout {
			artifact("[revision]/[artifact]-[revision].[ext]")
		}
		content {
			includeGroup("virtual.github.hotswapagent")
		}
		metadataSources {
			artifact()
		}
	}
	maven("https://server.bbkr.space/artifactory/libs-release")
	maven("https://repo.nea.moe/releases")
	maven("https://maven.notenoughupdates.org/releases")
	maven("https://repo.nea.moe/mirror")
	maven("https://jitpack.io/") {
		content {
			includeGroupByRegex("(com|io)\\.github\\..+")
			excludeModule("io.github.cottonmc", "LibGui")
		}
	}
	maven("https://repo.hypixel.net/repository/Hypixel/")
	maven("https://maven.azureaaron.net/snapshots")
	maven("https://maven.azureaaron.net/releases")
	maven("https://www.cursemaven.com")
	maven("https://maven.isxander.dev/releases") {
		name = "Xander Maven"
	}
	mavenLocal()
}