David Herman
06/25/2025, 6:06 PMkobweb = "0.23.0-SNAPSHOT"
kotlin = "2.2.0"
David Herman
06/25/2025, 6:06 PMDavid Herman
06/25/2025, 6:12 PM"<https://s01.oss.sonatype.org/content/repositories/snapshots/>"
to "<https://central.sonatype.com/repository/maven-snapshots/>"
Basically, make sure the following code is in your settings file:
// The following block registers dependencies to enable Kobweb snapshot support. It is safe to delete or comment out
// this block if you never plan to use them.
gradle.settingsEvaluated {
fun RepositoryHandler.kobwebSnapshots() {
maven("<https://central.sonatype.com/repository/maven-snapshots/>") {
mavenContent {
includeGroupByRegex("com\\.varabyte\\.kobweb.*")
snapshotsOnly()
}
}
}
pluginManagement.repositories { kobwebSnapshots() }
dependencyResolutionManagement.repositories { kobwebSnapshots() }
}