From efa947f7c636d1b32edcfb9acd589af966ab7d99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Berg=20Glasius?= Date: Fri, 5 Jan 2024 10:09:15 +0100 Subject: [PATCH] Information about gradle excludes Important information about excluding the old `org.grails.plugins:fields:3.0.0.RC1` was added to README.md --- readme.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/readme.md b/readme.md index 21d4b000..d59a5985 100644 --- a/readme.md +++ b/readme.md @@ -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