Browse Source

Merge branch '2.5.x'

Closes gh-28120
pull/28123/head
Andy Wilkinson 4 years ago
parent
commit
0b5d178e5b
  1. 13
      spring-boot-project/spring-boot-tools/spring-boot-loader-tools/build.gradle

13
spring-boot-project/spring-boot-tools/spring-boot-loader-tools/build.gradle

@ -35,12 +35,6 @@ dependencies { @@ -35,12 +35,6 @@ dependencies {
testImplementation("org.zeroturnaround:zt-zip:1.13")
}
sourceSets {
main {
resources.srcDirs generatedResources
}
}
task reproducibleLoaderJar(type: Jar) {
dependsOn configurations.loader
from {
@ -69,9 +63,10 @@ task reproducibleJarModeLayerToolsJar(type: Jar) { @@ -69,9 +63,10 @@ task reproducibleJarModeLayerToolsJar(type: Jar) {
destinationDirectory = file("${generatedResources}/META-INF/jarmode")
}
processResources {
dependsOn reproducibleLoaderJar
dependsOn reproducibleJarModeLayerToolsJar
sourceSets {
main {
output.dir(generatedResources, builtBy: [reproducibleJarModeLayerToolsJar, reproducibleLoaderJar])
}
}
compileJava {

Loading…
Cancel
Save