I have installed GGTS 3.6.4 and also Groovy & Grails using GVM on my MAC OS. In GGTS, Preferences - Configure Grails Installation - Add, I want to add the latest grails installed by GVM in /Users/user/.gvm/grails/current I have also enabled the hidden folders in Mac.
Asked
Active
Viewed 1,228 times
2 Answers
1
grails version 3.x.x doesn't contain build.properties file.
So, you should follow the following steps:
- Create /grails-3.x.x/build.properties file.
- Inside build.properties write the content version name as
grails.version=3.1.1
- Now, open GGTS .
- Go to Window/Preferences.
- Type grails in the 'type filter text'.
- Select Grails.
- Now click on Add button on the right panel to add grails version 3.x.x .
- Select the grails version from the My computer.
- You are ready to go.
Your GGTS will recognize it as now Grails installation.

Sandeep Roniyaar
- 204
- 1
- 8
- 26
-
It allows to install grails but you can't work any further – Adnan Jul 05 '16 at 19:52
0
According to the GGTS website, it only supports Grails 1.3/2.x (not the latest Grails 3.x). Pivotal discontinued support for GGTS earlier this year.
The best IDE alternative currently is IntelliJ IDEA. Grails 3 is built on Gradle, so no special support for Grails is necessary as IDEA already has excellent support for Gradle projects.

thecodesmith_
- 1,277
- 8
- 18
-
@Tejaswee: You're welcome! If it works for you, consider accepting the answer or asking for more info. :) – thecodesmith_ Jul 30 '15 at 20:16