From e802d16e9c4c219faee4e4406ac39a31af85a321 Mon Sep 17 00:00:00 2001 From: James Daugherty Date: Sat, 21 Dec 2024 14:44:42 -0500 Subject: [PATCH] Add comment for why grails-bom must be excluded --- json-testing-support/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/json-testing-support/build.gradle b/json-testing-support/build.gradle index aad5ed915..b5caa5585 100644 --- a/json-testing-support/build.gradle +++ b/json-testing-support/build.gradle @@ -10,6 +10,10 @@ ext.set('projectDesc', 'JSON Views Testing Support') dependencies { + // Note: the bom has to be excluded on grails dependencies otherwise it will be detected as snapshot + // (even though none of these projects have a version that is snapshot). + // This behavior is only seen on a non-buildsnapshot project version. + api project(':views-json'), { // Used in public API exclude group: 'org.grails', module: 'grails-bom' }