Skip to content

Commit

Permalink
FEATURE : add several dependencies for Kotlin-JDSL-Reactive #4
Browse files Browse the repository at this point in the history
  • Loading branch information
stephano-tri committed Feb 13, 2024
1 parent 5ec1a83 commit 5fed3fc
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,25 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
implementation("org.springframework.kafka:spring-kafka")
// https://mvnrepository.com/artifact/io.projectreactor.kafka/reactor-kafka
implementation("io.projectreactor.kafka:reactor-kafka:1.3.22")
// https://mvnrepository.com/artifact/org.postgresql/r2dbc-postgresql
implementation("org.postgresql:r2dbc-postgresql:1.0.4.RELEASE")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")
testImplementation("org.springframework.kafka:spring-kafka-test")
// https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib
// https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.7.10")

// for use kotlin jdsl reactive(Line corp)
implementation("org.hibernate.reactive:hibernate-reactive-core-jakarta:1.1.9.Final")
implementation("io.vertx:vertx-jdbc-client:4.3.1")
implementation("io.agroal:agroal-pool:2.0")
implementation("com.linecorp.kotlin-jdsl:spring-data-kotlin-jdsl-hibernate-reactive-jakarta:2.2.1.RELEASE")
compileOnly("jakarta.persistence:jakarta.persistence-api:3.1.0")
implementation("io.smallrye.reactive:mutiny-kotlin:1.6.0")
// Resolve conflict to other hibernate versions
implementation("org.springframework.boot:spring-boot-starter-data-jpa") {
exclude(module = "hibernate-core")
exclude(module = "hibernate-commons-annotations")
}
}

tasks.withType<KotlinCompile> {
Expand Down

0 comments on commit 5fed3fc

Please sign in to comment.