Skip to content

Commit 633445c

Browse files
committed
Updating the readme
Giving some initial context to these plugins. Trying help untangle when to use certain gradle plugins and for what reason.
1 parent c7c823f commit 633445c

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

grails-gsp/README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1-
## grails-gsp
1+
## Grails GSP Gradle Plugin
22

3+
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

Comments
 (0)