Ziklepmna
Ziklepmna

Reputation: 27

IntelliJ Grails Support + Git

1) So I need to create a project using Grails + Groovy + Git using IntelliJ but it seems my IntelliJ doesn't have Grails included, is there any way I can add it?

It shows up like this:

http://i.imgur.com/jrnp8YE.png

2) Also when I installed Grails it installed somewhere on C:\ and I think for it to get saved on my Git repo it needs to be inside of it. How can I make this work?

3) Haven't got to the Groovy part yet so if anyone can give me any heads up on configuration it would be greatly appreciated.

TLDR: Need to create a project with IntelliJ using Grails + Groovy, and store it on my Git repo, need config instructions.

Upvotes: 1

Views: 80

Answers (2)

Tamang
Tamang

Reputation: 1

Seems like you downloaded community version of IntelliJ idea. Download ultimate version of idea.

Upvotes: -1

VonC
VonC

Reputation: 1324367

but it seems my IntelliJ doesn't have Grails included

As mentioned in the IntelliJ IDEA 2017.1 Help

This feature is supported in the Ultimate edition only.

As opposed to groovy: see "Getting Started with Groovy"

Beside that, you can follow How to get a Grails Project into Git, and make sure to do a git init . inside your grail root project.

Upvotes: 2

Related Questions