Intellij create grails project -
when create new project in intellij on left grails missing,i think there kiind of plugins/tools install grails on intellij , show it?
in order have grails in project, should check grails included in build.gradle file. these main lines basic building of grails framework.(there other extensions can add).
apply plugin: "org.grails.grails-web" apply plugin: "org.grails.grails-gsp" grails { grailsversion = '3.1.10' } dependencies { compile "org.grails:grails-core:$grailsversion" }
after adding lines should close intellij idea , open using build.gradle file.
then should see grails-app [main] directory.
Comments
Post a Comment