Skip to content

Commit 2a38b9e

Browse files
committed
add 4.0.0
1 parent 9dc88cb commit 2a38b9e

File tree

4 files changed

+107
-0
lines changed

4 files changed

+107
-0
lines changed
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
From 5adf2efcf9f91e66aea16cbbf49e0a9c059b2be9 Mon Sep 17 00:00:00 2001
2+
From: Razvan-Daniel Mihai <[email protected]>
3+
Date: Thu, 15 May 2025 18:15:16 +0200
4+
Subject: Add CycloneDX plugin
5+
6+
---
7+
build.gradle | 41 +++++++++++++++++++++++++++++++++++++++++
8+
1 file changed, 41 insertions(+)
9+
10+
diff --git a/build.gradle b/build.gradle
11+
index 388a85aa85..fb0015e49a 100644
12+
--- a/build.gradle
13+
+++ b/build.gradle
14+
@@ -45,6 +45,47 @@ plugins {
15+
// artifacts - see https://github.com/johnrengelman/shadow/issues/901
16+
id 'com.github.johnrengelman.shadow' version '8.1.0' apply false
17+
id 'com.diffplug.spotless' version "6.25.0"
18+
+ id 'org.cyclonedx.bom' version '1.10.0'
19+
+}
20+
+
21+
+cyclonedxBom {
22+
+ // Specified the type of project being built. Defaults to 'library'
23+
+ projectType = "application"
24+
+ // Specified the version of the CycloneDX specification to use. Defaults to '1.5'
25+
+ schemaVersion = "1.5"
26+
+ // Boms destination directory. Defaults to 'build/reports'
27+
+ destination = file("build/reports")
28+
+ // The file name for the generated BOMs (before the file format suffix). Defaults to 'bom'
29+
+ outputName = "bom"
30+
+ // The file format generated, can be xml, json or all for generating both. Defaults to 'all'
31+
+ outputFormat = "json"
32+
+ includeConfigs = ["runtimeClasspath"]
33+
+ // Exclude test components. This list needs to be checked and, if it changed, updated for every new Kafka version.
34+
+ // The list can be obtained by running `gradle projects | grep upgrade-system-tests`
35+
+ skipProjects = [
36+
+ 'upgrade-system-tests-0110',
37+
+ 'upgrade-system-tests-10',
38+
+ 'upgrade-system-tests-11',
39+
+ 'upgrade-system-tests-20',
40+
+ 'upgrade-system-tests-21',
41+
+ 'upgrade-system-tests-22',
42+
+ 'upgrade-system-tests-23',
43+
+ 'upgrade-system-tests-24',
44+
+ 'upgrade-system-tests-25',
45+
+ 'upgrade-system-tests-26',
46+
+ 'upgrade-system-tests-27',
47+
+ 'upgrade-system-tests-28',
48+
+ 'upgrade-system-tests-30',
49+
+ 'upgrade-system-tests-31',
50+
+ 'upgrade-system-tests-32',
51+
+ 'upgrade-system-tests-33',
52+
+ 'upgrade-system-tests-34',
53+
+ 'upgrade-system-tests-35',
54+
+ 'upgrade-system-tests-36',
55+
+ 'upgrade-system-tests-37',
56+
+ 'upgrade-system-tests-38',
57+
+ 'upgrade-system-tests-39',
58+
+ ]
59+
}
60+
61+
ext {
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
From a91d18e7227aea84fb0baaafc8d253d321a46a0b Mon Sep 17 00:00:00 2001
2+
From: Lars Francke <[email protected]>
3+
Date: Thu, 12 Dec 2024 10:09:47 +0100
4+
Subject: Change Gradle to use the Nexus Build Repo
5+
6+
---
7+
build.gradle | 8 ++++++--
8+
1 file changed, 6 insertions(+), 2 deletions(-)
9+
10+
diff --git a/build.gradle b/build.gradle
11+
index fb0015e49a..7497ce70a3 100644
12+
--- a/build.gradle
13+
+++ b/build.gradle
14+
@@ -20,7 +20,9 @@ import java.nio.charset.StandardCharsets
15+
16+
buildscript {
17+
repositories {
18+
- mavenCentral()
19+
+ maven {
20+
+ url 'https://build-repo.stackable.tech/repository/maven-public/'
21+
+ }
22+
}
23+
apply from: "$rootDir/gradle/dependencies.gradle"
24+
25+
@@ -208,7 +210,9 @@ ext {
26+
allprojects {
27+
28+
repositories {
29+
- mavenCentral()
30+
+ maven {
31+
+ url 'https://build-repo.stackable.tech/repository/maven-public/'
32+
+ }
33+
}
34+
35+
dependencyUpdates {
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
base = "985bc99521dd22bbf620591b8db8613c54f596b2"
2+
mirror = "https://github.com/stackabletech/kafka.git"

kafka/versions.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,13 @@
1717
"opa_authorizer": "1.5.1",
1818
"jmx_exporter": "1.2.0",
1919
},
20+
{
21+
"product": "4.0.0",
22+
"java-base": "21",
23+
"java-devel": "21",
24+
"scala": "2.13",
25+
"kcat": "1.7.0",
26+
"opa_authorizer": "1.5.1",
27+
"jmx_exporter": "1.2.0",
28+
},
2029
]

0 commit comments

Comments
 (0)