```classpath "org.cyclonedx:cyclonedx-gradle-plugi...
# questions
f
Copy code
classpath "org.cyclonedx:cyclonedx-gradle-plugin:1.3.0"
a
Just tested this in a Grails 6.2.1 with java 17 and was able to run 1.8.2 by adding to my build.gradle file
Copy code
plugin {
     ...
     id "org.cyclonedx.bom" version: "1.8.2"
}
If I went any higher then I started getting JDK errors about needing a higher version of Java. I assume you could put 1.8.2 on your classpath and give a shot. I also assume once Grails 7 comes out that would give you the upgrade path to the 1.10 version
👍 1
f
yah this is a Grails 3 app hah…do you think classpath would work for that? or know of a Grails 3 plugin that generates a BOM?