Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nk2IsHere committed Aug 4, 2023
1 parent a9e33ea commit f2f3e44
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 13 deletions.
2 changes: 1 addition & 1 deletion autoconfigure-adapter-mongo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
api("org.springframework.boot:spring-boot")
api("org.springframework.boot:spring-boot-autoconfigure")

compileOnly("de.flapdoodle.embed:de.flapdoodle.embed.mongo")
compileOnly("de.flapdoodle.embed:de.flapdoodle.embed.mongo.spring30x:4.7.0")
compileOnly("org.mongodb:mongodb-driver-legacy")
compileOnly("org.mongodb:mongodb-driver-reactivestreams")
compileOnly("org.springframework.data:spring-data-mongodb")
Expand Down
3 changes: 0 additions & 3 deletions autoconfigure-adapter-r2dbc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ dependencies {

compileOnly("org.springframework.data:spring-data-r2dbc")
compileOnly("org.springframework:spring-r2dbc")
compileOnly("io.r2dbc:r2dbc-postgresql")
compileOnly("io.r2dbc:r2dbc-h2")
compileOnly("io.r2dbc:r2dbc-mssql")
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion autoconfigure-adapter-security/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
api("org.springframework.boot:spring-boot-autoconfigure")

compileOnly("org.springframework:spring-webmvc")
compileOnly("javax.servlet:javax.servlet-api")
compileOnly("jakarta.servlet:jakarta.servlet-api")
compileOnly("org.springframework:spring-webflux")
compileOnly("org.springframework.security:spring-security-web")
compileOnly("org.springframework.security:spring-security-config")
Expand Down
3 changes: 1 addition & 2 deletions autoconfigure-adapter-thymeleaf/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ dependencies {
compileOnly("org.springframework:spring-webmvc")
compileOnly("org.springframework:spring-webflux")
compileOnly("org.thymeleaf:thymeleaf")
compileOnly("org.thymeleaf:thymeleaf-spring5")
compileOnly("org.thymeleaf.extras:thymeleaf-extras-java8time")
compileOnly("org.thymeleaf:thymeleaf-spring6")
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion autoconfigure-adapter-web-servlet/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
api("org.springframework.boot:spring-boot-autoconfigure")

compileOnly("org.springframework:spring-webmvc")
compileOnly("javax.servlet:javax.servlet-api")
compileOnly("jakarta.servlet:jakarta.servlet-api")
compileOnly("com.fasterxml.jackson.core:jackson-databind")
}

Expand Down
4 changes: 2 additions & 2 deletions kofu-mongo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {

implementation("org.jetbrains.kotlin:kotlin-reflect")

compileOnly("de.flapdoodle.embed:de.flapdoodle.embed.mongo")
compileOnly("de.flapdoodle.embed:de.flapdoodle.embed.mongo.spring30x:4.7.0")
compileOnly("org.mongodb:mongodb-driver-legacy")
compileOnly("org.mongodb:mongodb-driver-reactivestreams")
implementation("org.springframework.data:spring-data-mongodb")
Expand All @@ -25,7 +25,7 @@ dependencies {
testImplementation("org.testcontainers:testcontainers")

testImplementation("org.springframework.boot:spring-boot-starter-data-mongodb-reactive")
testImplementation("de.flapdoodle.embed:de.flapdoodle.embed.mongo")
testImplementation("de.flapdoodle.embed:de.flapdoodle.embed.mongo.spring30x:4.7.0")
testImplementation("org.mongodb:mongodb-driver-legacy")
testImplementation("org.mongodb:mongodb-driver-reactivestreams")
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ abstract class AbstractMongoDsl(private val init: MongoDsl.() -> Unit) : Abstrac
/**
* Enable MongoDB embedded webFlux.
*
* Require `de.flapdoodle.embed:de.flapdoodle.embed.mongo` dependency.
* Require `de.flapdoodle.embed:de.flapdoodle.embed.mongo.spring30x:4.7.0` dependency.
*
* @sample org.springframework.fu.kofu.samples.mongoEmbedded
*/
Expand Down
4 changes: 2 additions & 2 deletions kofu-webmvc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {

implementation("org.jetbrains.kotlin:kotlin-reflect")

compileOnly("javax.servlet:javax.servlet-api")
compileOnly("jakarta.servlet:jakarta.servlet-api")
implementation("org.springframework:spring-webmvc")
implementation("org.springframework.security:spring-security-web")
implementation("org.springframework.security:spring-security-config")
Expand All @@ -28,7 +28,7 @@ dependencies {
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testImplementation("org.testcontainers:testcontainers")

testImplementation("javax.servlet:javax.servlet-api")
testImplementation("jakarta.servlet:jakarta.servlet-api")
testImplementation("org.springframework.boot:spring-boot-starter-web")
testImplementation("org.springframework.boot:spring-boot-starter-security")
testImplementation("org.springframework.security:spring-security-test")
Expand Down

0 comments on commit f2f3e44

Please sign in to comment.