Skip to content

Commit

Permalink
Information about gradle excludes
Browse files Browse the repository at this point in the history
Important information about excluding the old `org.grails.plugins:fields:3.0.0.RC1`  was added to README.md
  • Loading branch information
sbglasius committed Jan 5, 2024
1 parent b075ba2 commit efa947f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,18 @@ A spiritual successor to the bean-fields plugin that attempts to provide a confi
For further information please see the full documentation.

Documentation can be found [here](https://gpc.github.io/fields)

## Important

If you use `org.grails.plugins:scaffolding` version 4.10.0 or less you need to exclude the original `org.grals.plugins:fields:3.3.0.RC1` like this:

```
implementation("org.grails.plugins:scaffolding") {
exclude module: 'fields'
}
implementation 'io.github.gpc:fields:5.0.0-RC2'
```

if you are using Grails 4.x, replace `implementation` with `compile` and use `io.github.gpc:fields:4.0.0`.

GA versions for Grails 5.x and 6.x are pending

0 comments on commit efa947f

Please sign in to comment.