Skip to content

Commit 0edd206

Browse files
committed
chore(nifi): Add 2.4.0
1 parent fc33181 commit 0edd206

File tree

5 files changed

+68
-0
lines changed

5 files changed

+68
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ All notable changes to this project will be documented in this file.
3535
- zookeeper: check for correct permissions and ownerships in /stackable folder via
3636
`check-permissions-ownership.sh` provided in stackable-base image ([#1043]).
3737
- nifi: Add [nifi-iceberg-bundle](https://github.com/stackabletech/nifi-iceberg-bundle) for NiFi `2.2.0` ([#1060], [#1106]).
38+
- nifi: Add `2.4.0` ([#1114]).
3839
- java: Add JDK 24 ([#1097]).
3940
- ci: Add golang image to mirror workflow ([#1103]).
4041

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
From cef2caa1141df8974ff853ce3bf55736cc22af4f Mon Sep 17 00:00:00 2001
2+
From: Nick Larsen <nick.larsen@stackable.tech>
3+
Date: Mon, 17 Feb 2025 17:26:20 +0100
4+
Subject: no zip assembly
5+
6+
---
7+
nifi-assembly/pom.xml | 1 -
8+
1 file changed, 1 deletion(-)
9+
10+
diff --git a/nifi-assembly/pom.xml b/nifi-assembly/pom.xml
11+
index 41bab2ad37..4ebb494613 100644
12+
--- a/nifi-assembly/pom.xml
13+
+++ b/nifi-assembly/pom.xml
14+
@@ -66,7 +66,6 @@ language governing permissions and limitations under the License. -->
15+
<tarLongFileMode>posix</tarLongFileMode>
16+
<formats>
17+
<format>dir</format>
18+
- <format>zip</format>
19+
</formats>
20+
</configuration>
21+
</execution>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
From a9fc3a2eea5add80ca03e8fba97d83d2952f2e5d Mon Sep 17 00:00:00 2001
2+
From: Nick Larsen <nick.larsen@stackable.tech>
3+
Date: Mon, 17 Feb 2025 17:31:17 +0100
4+
Subject: add cyclonedx plugin
5+
6+
---
7+
pom.xml | 18 ++++++++++++++++++
8+
1 file changed, 18 insertions(+)
9+
10+
diff --git a/pom.xml b/pom.xml
11+
index 78f53a9aab..fdcc97cd51 100644
12+
--- a/pom.xml
13+
+++ b/pom.xml
14+
@@ -1013,6 +1013,24 @@
15+
</rulesets>
16+
</configuration>
17+
</plugin>
18+
+ <plugin>
19+
+ <groupId>org.cyclonedx</groupId>
20+
+ <artifactId>cyclonedx-maven-plugin</artifactId>
21+
+ <version>2.8.0</version>
22+
+ <configuration>
23+
+ <projectType>application</projectType>
24+
+ <schemaVersion>1.5</schemaVersion>
25+
+ <skipNotDeployed>false</skipNotDeployed>
26+
+ </configuration>
27+
+ <executions>
28+
+ <execution>
29+
+ <phase>package</phase>
30+
+ <goals>
31+
+ <goal>makeBom</goal>
32+
+ </goals>
33+
+ </execution>
34+
+ </executions>
35+
+ </plugin>
36+
</plugins>
37+
</build>
38+
<profiles>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
mirror = "https://github.com/stackabletech/nifi.git"
2+
base = "65c7732e46cdfcb17afe0dd7b0a3e0956226bcbb"

nifi/versions.py

+6
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,10 @@
99
"java-base": "11",
1010
"java-devel": "11",
1111
},
12+
{
13+
"product": "2.4.0",
14+
"java-base": "21",
15+
"java-devel": "21",
16+
"nifi_iceberg_bundle": "0.0.3",
17+
},
1218
]

0 commit comments

Comments
 (0)