Create spring-boot-data-rest module
This commit is contained in:
committed by
Phillip Webb
parent
de2827e23f
commit
41befa4fea
27
spring-boot-project/spring-boot-data-rest/build.gradle
Normal file
27
spring-boot-project/spring-boot-data-rest/build.gradle
Normal file
@@ -0,0 +1,27 @@
|
||||
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 Data REST"
|
||||
|
||||
dependencies {
|
||||
api(project(":spring-boot-project:spring-boot-webmvc"))
|
||||
api(project(":spring-boot-project:spring-boot-jackson"))
|
||||
api("org.springframework.data:spring-data-rest-webmvc")
|
||||
|
||||
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
||||
|
||||
testImplementation(project(":spring-boot-project:spring-boot-data-jpa"))
|
||||
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
||||
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
||||
testImplementation(testFixtures(project(":spring-boot-project:spring-boot-autoconfigure")))
|
||||
testImplementation("jakarta.servlet:jakarta.servlet-api")
|
||||
|
||||
testRuntimeOnly("ch.qos.logback:logback-classic")
|
||||
testRuntimeOnly("com.h2database:h2")
|
||||
testRuntimeOnly("com.zaxxer:HikariCP")
|
||||
}
|
||||
Reference in New Issue
Block a user