Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for integrate-with in grails 3.x

Tags:

grails

the command

grails integrate-with --foo

is gone in grails 3.x. Has that functionality not been implemented yet, or is it hiding somewhere I don't know where to find it?

like image 756
acr Avatar asked May 30 '15 23:05

acr


1 Answers

As mentioned in the comments, there's no need for the IDE integration command, but an auto-generated .gitignore file is definitely nice to have and something that was missing in the early 3.x releases.

Since Grails 3.0.5, a .gitignore file is created by default with the create-app command.

See the GitHub issue: Default integration with Git on grails create-app command.

like image 57
dpcasady Avatar answered Sep 28 '22 00:09

dpcasady