22 lines
557 B
Groovy
22 lines
557 B
Groovy
plugins {
|
|
id "java-library"
|
|
id "org.springframework.boot.deployed"
|
|
}
|
|
|
|
description = "Spring Boot Jarmode Tools"
|
|
|
|
dependencies {
|
|
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-loader-classic"))
|
|
implementation("org.springframework:spring-core")
|
|
|
|
testImplementation("org.assertj:assertj-core")
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
testImplementation("org.mockito:mockito-core")
|
|
testImplementation("org.mockito:mockito-junit-jupiter")
|
|
}
|
|
|
|
jar {
|
|
reproducibleFileOrder = true
|
|
preserveFileTimestamps = false
|
|
}
|