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"
|
|
|
|
id "org.springframework.boot.internal-dependency-management"
|
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 03:24:37 +08:00
|
|
|
api platform(project(":spring-boot-project:spring-boot-parent"))
|
2020-01-22 17:07:55 +08:00
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
implementation project(":spring-boot-project:spring-boot-tools:spring-boot-loader")
|
|
|
|
implementation project(":spring-boot-project:spring-boot")
|
|
|
|
implementation "org.springframework:spring-core"
|
2020-01-22 17:07:55 +08:00
|
|
|
|
|
|
|
testImplementation "org.assertj:assertj-core"
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter"
|
|
|
|
testImplementation "org.mockito:mockito-core"
|
|
|
|
}
|
|
|
|
|