This is an automated email from the ASF dual-hosted git repository.
jamesfredley pushed a change to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-core.git
from cf0cc75a44 Merge pull request #14689 from
apache/grails-shell-cli-apache-coordinates
add eb271f86bd Change grails-profile-base to use outputs of the build
instead of manual check ins
add a5c8d65f45 Do not checkin generated artifacts
add 9e03f579e2 Use generated artifacts for grails-profiles-profile
add 0a07dc7401 Do not checkin generated artifacts
add 7bab290b2d Move .gitignore to profile root
add 978eceef66 support snapshot versions with the grails wrapper
add ac5cda942c generate the wrapper scripts using gradle
add c57c9c749e fix windows batch file to not go back a directory
add 2fa484138b Force permissions to 0755
new 594ff69ae6 Merge pull request #14696 from jdaugherty/7.0.x
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
grails-profiles/.gitignore | 3 +
grails-profiles/base/build.gradle | 20 +++
grails-profiles/base/skeleton/grails-wrapper.jar | Bin 5743 -> 0 bytes
grails-profiles/base/skeleton/grailsw | 152 ------------------
grails-profiles/base/skeleton/grailsw.bat | 89 -----------
grails-profiles/profile/build.gradle | 20 +++
.../profile/skeleton/grails-wrapper.jar | Bin 5743 -> 0 bytes
grails-profiles/profile/skeleton/grailsw | 152 ------------------
grails-profiles/profile/skeleton/grailsw.bat | 89 -----------
.../src/main/groovy/grails/init/RunCommand.groovy | 2 +
grails-wrapper/build.gradle | 58 ++++++-
grails-wrapper/shell/grailsw | 169 ---------------------
grails-wrapper/shell/grailsw.bat | 106 -------------
.../main/java/grails/init/FindSnapshotHandler.java | 79 ++++++++++
.../src/main/java/grails/init/Start.java | 42 +++--
15 files changed, 212 insertions(+), 769 deletions(-)
create mode 100644 grails-profiles/.gitignore
delete mode 100644 grails-profiles/base/skeleton/grails-wrapper.jar
delete mode 100755 grails-profiles/base/skeleton/grailsw
delete mode 100755 grails-profiles/base/skeleton/grailsw.bat
delete mode 100644 grails-profiles/profile/skeleton/grails-wrapper.jar
delete mode 100755 grails-profiles/profile/skeleton/grailsw
delete mode 100755 grails-profiles/profile/skeleton/grailsw.bat
delete mode 100755 grails-wrapper/shell/grailsw
delete mode 100755 grails-wrapper/shell/grailsw.bat
create mode 100644
grails-wrapper/src/main/java/grails/init/FindSnapshotHandler.java