2020-01-22 17:07:55 +08:00
|
|
|
plugins {
|
2020-01-23 03:24:37 +08:00
|
|
|
id "java-library"
|
|
|
|
id "org.springframework.boot.conventions"
|
|
|
|
id "org.springframework.boot.deployed"
|
2020-01-22 17:07:55 +08:00
|
|
|
}
|
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
description = "Spring Boot Layers Tools"
|
2020-01-22 17:07:55 +08:00
|
|
|
|
|
|
|
dependencies {
|
2020-01-23 06:09:17 +08:00
|
|
|
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-loader"))
|
|
|
|
implementation("org.springframework:spring-core")
|
2020-01-22 17:07:55 +08:00
|
|
|
|
2020-01-23 06:09:17 +08:00
|
|
|
testImplementation("org.assertj:assertj-core")
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
|
|
testImplementation("org.mockito:mockito-core")
|
2020-08-08 22:53:42 +08:00
|
|
|
testImplementation("org.mockito:mockito-junit-jupiter")
|
2020-01-22 17:07:55 +08:00
|
|
|
}
|