Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ allprojects {
releasesOnly(mavenCentral())

// old and new sonatype snapshot repository
snapshotsOnly(maven("https://oss.sonatype.org/content/repositories/snapshots/"))
snapshotsOnly(maven("https://central.sonatype.com/repository/maven-snapshots/"))
snapshotsOnly(maven("https://s01.oss.sonatype.org/content/repositories/snapshots/"))

// must be after sonatype as sponge mirrors sonatype which leads to outdated dependencies
maven("https://repo.spongepowered.org/maven/")

// ensure that we use these repositories for snapshots/releases only (improves lookup times)
releasesOnly(maven("https://repository.derklaro.dev/releases/"))
snapshotsOnly(maven("https://repository.derklaro.dev/snapshots/"))

// must be after sonatype as sponge mirrors sonatype which leads to outdated dependencies
maven("https://repo.spongepowered.org/maven/")
}
}

Expand Down
Loading