| commit | f22119a21d777cc53f98798dfba3fce7bb4a37c3 | [log] [tgz] |
|---|---|---|
| author | puneetbehl <behlp@objectcomputing.com> | Sun Dec 19 00:30:24 2021 +0000 |
| committer | puneetbehl <behlp@objectcomputing.com> | Sun Dec 19 00:30:24 2021 +0000 |
| tree | 4cbd9329c75774d488f75c119e8ea9158340a677 | |
| parent | f474b7e6710eaa7b809ab242cbd172f0bd5265f8 [diff] |
Back to 5.0.2-SNAPSHOT
Below are the plugins that are provided by the grails-gradle-plugin dependency.
buildscript {
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
}
}
Todo: Add the docs
Todo: Add the docs
Todo: Add the docs
Todo: Add the docs
Below are typical Gradle plugin applies that certain types of projects should expect. These should be automatically added of you when using grails create-app and grails create-plugin commands. However, if you wish to enhance or change the scope of your plugin or project you may have to change (add or remove) a grails gradle plugin.
apply plugin: "org.grails.grails-web" apply plugin: "org.grails.grails-gsp"
apply plugin: "org.grails.grails-web"
A project created with a typical grails create-app --profile=web-micro
There is no plugins used here as this project type creates a stand alone runnable groovy application and no build.gradle file.
apply plugin: "org.grails.grails-plugin" apply plugin: "org.grails.grails-gsp"
apply plugin: "org.grails.grails-web"
apply plugin: "org.grails.grails-plugin"
A project created with a typical grails create-plugin --profile=web-micro
There is no plugins used here as this project type creates a stand alone runnable groovy application and no `build.gradle`` file.