You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This gradle plugin is required for all grails 3 applications and plugins that require GSP processing. If your project includes GSPs you should add the following to your `build.gradle`.
4
+
5
+
```gradle
6
+
apply plugin: "org.grails.grails-gsp"
7
+
```
8
+
9
+
It is typical of standard grails 3 application to use this in conjunction with `grails-web` as in the following example:
10
+
11
+
```gradle
12
+
apply plugin: "org.grails.grails-web"
13
+
apply plugin: "org.grails.grails-gsp"
14
+
```
15
+
16
+
Dependencies
17
+
-----
18
+
To see what additional plugins will be included with this plugin you can view this project's [build.gradle](https://github.com/grails/grails-core/blob/master/grails-gsp/build.gradle)
0 commit comments