What tools shall be used to automate Grails build? Ant? Shell? Would be good to read some official documentation about it.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Out-of-the-box Grails provides a build system that can be used to compile, run tests, create a .war, deploy to tomcat, etc.
This build system is implemented using GAnt, which is a Groovy DSL over Ant. You can extend/customise the build system by writing your own GAnt scripts. The scripts provided by Grails provide well defined hooks that you can use to customise the build lifecycle.
What exactly is it that you’re trying to do?