Correct the permissions of scripts in archives of boot distribution

Closes gh-14158
This commit is contained in:
Andy Wilkinson
2018-09-11 20:09:20 +01:00
parent e84d6cd95b
commit 630e2d0b41
3 changed files with 46 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
buildscript {
dependencies {
classpath files(pluginClasspath.split(','))
}
}
apply plugin: 'org.springframework.boot'
apply plugin: 'application'
apply plugin: 'java'
bootJar {
mainClassName = 'com.example.ExampleApplication'
}