@@ -9,12 +9,13 @@ group = "dev.slne.surf"
99version = findProperty(" version" ) as String
1010
1111dependencies {
12- implementation(libs.bundles.exposed) {
13- exclude(" org.jetbrains.kotlin" )
14- exclude(" org.jetbrains.kotlinx" , " kotlinx-coroutines-core" )
15- exclude(" org.jetbrains.kotlinx" , " kotlinx-coroutines-reactive" )
16- exclude(" org.jetbrains.kotlinx" , " kotlinx-serialization-json" )
17- }
12+ // implementation(libs.bundles.exposed)
13+ /* Use JitPack until https://github.com/JetBrains/Exposed/commit/f425884a4e0799a55b87f54b19bf7f84b291d0b9 is included in the next release */
14+ implementation(" com.github.JetBrains.Exposed:exposed-core:f425884" )
15+ implementation(" com.github.JetBrains.Exposed:exposed-r2dbc:f425884" )
16+ implementation(" com.github.JetBrains.Exposed:exposed-java-time:f425884" )
17+ implementation(" com.github.JetBrains.Exposed:exposed-json:f425884" )
18+
1819 implementation(libs.r2dbc.pool)
1920 implementation(libs.bundles.databaseDriver)
2021}
@@ -23,6 +24,10 @@ configurations.runtimeClasspath {
2324 exclude(" io.projectreactor" , " reactor-core" )
2425 exclude(" org.reactivestreams" )
2526 exclude(" org.slf4j" )
27+ exclude(" org.jetbrains.kotlin" )
28+ exclude(" org.jetbrains.kotlinx" , " kotlinx-coroutines-core" )
29+ exclude(" org.jetbrains.kotlinx" , " kotlinx-coroutines-reactive" )
30+ exclude(" org.jetbrains.kotlinx" , " kotlinx-serialization-json" )
2631}
2732
2833shadow {
0 commit comments