2020-01-10 21:48:43 +08:00
|
|
|
plugins {
|
2020-01-23 03:24:37 +08:00
|
|
|
id "java-library"
|
|
|
|
id "maven-publish"
|
|
|
|
id "org.springframework.boot.conventions"
|
|
|
|
id "org.springframework.boot.internal-dependency-management"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
description = "Spring Boot Configuration Metadata"
|
2020-01-10 21:48:43 +08:00
|
|
|
|
|
|
|
dependencies {
|
2020-01-15 20:32:37 +08:00
|
|
|
api platform(project(path: ":spring-boot-project:spring-boot-parent"))
|
|
|
|
|
2020-01-10 21:48:43 +08:00
|
|
|
implementation "com.vaadin.external.google:android-json"
|
|
|
|
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter"
|
|
|
|
testImplementation "org.assertj:assertj-core"
|
|
|
|
testImplementation "org.springframework:spring-core"
|
|
|
|
}
|