This is an automated email from the ASF dual-hosted git repository. jdaugherty pushed a commit to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 085f29827ad9fa275e018ac2726650841810aa5a Author: James Daugherty <[email protected]> AuthorDate: Wed Oct 15 12:34:16 2025 -0400 fix: add VCS reference to sbom to ensure build is reproducible --- .../src/main/groovy/org/apache/grails/buildsrc/SbomPlugin.groovy | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build-logic/plugins/src/main/groovy/org/apache/grails/buildsrc/SbomPlugin.groovy b/build-logic/plugins/src/main/groovy/org/apache/grails/buildsrc/SbomPlugin.groovy index 0f7acf4256..9fa5580013 100644 --- a/build-logic/plugins/src/main/groovy/org/apache/grails/buildsrc/SbomPlugin.groovy +++ b/build-logic/plugins/src/main/groovy/org/apache/grails/buildsrc/SbomPlugin.groovy @@ -166,8 +166,12 @@ class SbomPlugin implements Plugin<Project> { )) [email protected]([ new ExternalReference( - url: 'https://grails.apache.org/', + url: 'https://grails.apache.org', type: ExternalReference.Type.WEBSITE + ), + new ExternalReference( + url: 'https://github.com/apache/grails-core', + type: ExternalReference.Type.VCS ) ])
