34 lines
1.3 KiB
Groovy
34 lines
1.3 KiB
Groovy
plugins {
|
|
id "java-library"
|
|
id "org.springframework.boot.auto-configuration"
|
|
id "org.springframework.boot.configuration-properties"
|
|
id "org.springframework.boot.deployed"
|
|
id "org.springframework.boot.optional-dependencies"
|
|
}
|
|
|
|
description = "Spring Boot Session JDBC"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
api(project(":spring-boot-project:spring-boot-session"))
|
|
api("org.springframework.session:spring-session-jdbc")
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-jdbc"))
|
|
implementation(project(":spring-boot-project:spring-boot-web-server"))
|
|
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-flyway"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-liquibase"))
|
|
testImplementation(testFixtures(project(":spring-boot-project:spring-boot-session")))
|
|
testImplementation("jakarta.servlet:jakarta.servlet-api")
|
|
testImplementation("org.apache.commons:commons-dbcp2")
|
|
testImplementation("org.springframework:spring-web")
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
testRuntimeOnly("org.flywaydb:flyway-database-hsqldb")
|
|
testRuntimeOnly("org.hsqldb:hsqldb")
|
|
}
|