|
| 1 | +diff --git a/build.gradle b/build.gradle |
| 2 | +index 92082fe..e3d6c72 100644 |
| 3 | +--- a/build.gradle |
| 4 | ++++ b/build.gradle |
| 5 | +@@ -48,6 +48,48 @@ plugins { |
| 6 | + // artifacts - see https://github.com/johnrengelman/shadow/issues/901 |
| 7 | + id 'com.github.johnrengelman.shadow' version '8.1.0' apply false |
| 8 | + id 'com.diffplug.spotless' version '6.14.0' apply false // 6.14.1 and newer require Java 11 at compile time, so we can't upgrade until AK 4.0 |
| 9 | ++ id 'org.cyclonedx.bom' version '1.10.0' |
| 10 | ++} |
| 11 | ++ |
| 12 | ++cyclonedxBom { |
| 13 | ++ // Specified the type of project being built. Defaults to 'library' |
| 14 | ++ projectType = "application" |
| 15 | ++ // Specified the version of the CycloneDX specification to use. Defaults to '1.5' |
| 16 | ++ schemaVersion = "1.5" |
| 17 | ++ // Boms destination directory. Defaults to 'build/reports' |
| 18 | ++ destination = file("build/reports") |
| 19 | ++ // The file name for the generated BOMs (before the file format suffix). Defaults to 'bom' |
| 20 | ++ outputName = "bom" |
| 21 | ++ // The file format generated, can be xml, json or all for generating both. Defaults to 'all' |
| 22 | ++ outputFormat = "json" |
| 23 | ++ includeConfigs = ["runtimeClasspath"] |
| 24 | ++ // Exclude test components. This list needs to be checked and, if it changed, updated for every new Kafka version. |
| 25 | ++ // The list can be obtained by running `gradle projects | grep upgrade-system-tests` |
| 26 | ++ skipProjects = [ |
| 27 | ++ 'upgrade-system-tests-0100', |
| 28 | ++ 'upgrade-system-tests-0101', |
| 29 | ++ 'upgrade-system-tests-0102', |
| 30 | ++ 'upgrade-system-tests-0110', |
| 31 | ++ 'upgrade-system-tests-10', |
| 32 | ++ 'upgrade-system-tests-11', |
| 33 | ++ 'upgrade-system-tests-20', |
| 34 | ++ 'upgrade-system-tests-21', |
| 35 | ++ 'upgrade-system-tests-22', |
| 36 | ++ 'upgrade-system-tests-23', |
| 37 | ++ 'upgrade-system-tests-24', |
| 38 | ++ 'upgrade-system-tests-25', |
| 39 | ++ 'upgrade-system-tests-26', |
| 40 | ++ 'upgrade-system-tests-27', |
| 41 | ++ 'upgrade-system-tests-28', |
| 42 | ++ 'upgrade-system-tests-30', |
| 43 | ++ 'upgrade-system-tests-31', |
| 44 | ++ 'upgrade-system-tests-32', |
| 45 | ++ 'upgrade-system-tests-33', |
| 46 | ++ 'upgrade-system-tests-34', |
| 47 | ++ 'upgrade-system-tests-35', |
| 48 | ++ 'upgrade-system-tests-36', |
| 49 | ++ 'upgrade-system-tests-37' |
| 50 | ++ ] |
| 51 | + } |
| 52 | + |
| 53 | + ext { |
0 commit comments