forked from GeyserMC/Geyser
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unify repository definition (GeyserMC#4953)
* Unify repository definition * Remove duplicate repo * Update build-logic/src/main/kotlin/geyser.build-logic.gradle.kts Co-authored-by: Konicai <[email protected]> --------- Co-authored-by: Konicai <[email protected]>
- Loading branch information
1 parent
ee0b34e
commit cd897fe
Showing
3 changed files
with
46 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
repositories { | ||
// mavenLocal() | ||
|
||
mavenCentral() | ||
|
||
// Floodgate, Cumulus etc. | ||
maven("https://repo.opencollab.dev/main") | ||
|
||
// Paper, Velocity | ||
maven("https://repo.papermc.io/repository/maven-public") | ||
|
||
// Spigot | ||
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots") { | ||
mavenContent { snapshotsOnly() } | ||
} | ||
|
||
// BungeeCord | ||
maven("https://oss.sonatype.org/content/repositories/snapshots") { | ||
mavenContent { snapshotsOnly() } | ||
} | ||
|
||
// NeoForge | ||
maven("https://maven.neoforged.net/releases") { | ||
mavenContent { releasesOnly() } | ||
} | ||
|
||
// Minecraft | ||
maven("https://libraries.minecraft.net") { | ||
name = "minecraft" | ||
mavenContent { releasesOnly() } | ||
} | ||
|
||
// ViaVersion | ||
maven("https://repo.viaversion.com") { | ||
name = "viaversion" | ||
} | ||
|
||
// Jitpack for e.g. MCPL | ||
maven("https://jitpack.io") { | ||
content { includeGroupByRegex("com\\.github\\..*") } | ||
} | ||
|
||
// For Adventure snapshots | ||
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters