If anyone in here wanted to use Kobweb with Kotlin...
# kobweb
d
If anyone in here wanted to use Kobweb with Kotlin 2.2.0, you can try it out a little early with 0.23.0-SNAPSHOT
Copy code
kobweb = "0.23.0-SNAPSHOT"
kotlin = "2.2.0"
I'm aiming for a stable release by Friday, and there won't be too many more changes to the snapshot before then.
Oh, and worth mentioning that there's a significant maven source hosting migration happening across the open source community right now, so if you want to use the snapshot, you'll need to update the maven URL in your settings.gradle.kts from
"<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:
Copy code
// 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() }
}