Skip to content

Commit 0e62605

Browse files
committed
fix: kafka: missing patchfile for kafka 3.8.0
1 parent fe06607 commit 0e62605

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
diff --git a/build.gradle b/build.gradle
2+
index 92082fe..033eb91 100644
3+
--- a/build.gradle
4+
+++ b/build.gradle
5+
@@ -48,6 +48,46 @@ 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.9.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+
+ skipProjects = [
25+
+ 'upgrade-system-tests-0100',
26+
+ 'upgrade-system-tests-0101',
27+
+ 'upgrade-system-tests-0102',
28+
+ 'upgrade-system-tests-0110',
29+
+ 'upgrade-system-tests-10',
30+
+ 'upgrade-system-tests-11',
31+
+ 'upgrade-system-tests-20',
32+
+ 'upgrade-system-tests-21',
33+
+ 'upgrade-system-tests-22',
34+
+ 'upgrade-system-tests-23',
35+
+ 'upgrade-system-tests-24',
36+
+ 'upgrade-system-tests-25',
37+
+ 'upgrade-system-tests-26',
38+
+ 'upgrade-system-tests-27',
39+
+ 'upgrade-system-tests-28',
40+
+ 'upgrade-system-tests-30',
41+
+ 'upgrade-system-tests-31',
42+
+ 'upgrade-system-tests-32',
43+
+ 'upgrade-system-tests-33',
44+
+ 'upgrade-system-tests-34',
45+
+ 'upgrade-system-tests-35',
46+
+ 'upgrade-system-tests-36',
47+
+ 'upgrade-system-tests-37'
48+
+ ]
49+
}
50+
51+
ext {

0 commit comments

Comments
 (0)