Skip to content

Commit 1e2d331

Browse files
authoredMar 19, 2025··
Add 1.1.3 snapshot version of Omid to allow scanning and importing into SecObserve (#1033)
* Add 1.1.3-SNAPSHOT version of omid to allow scanning and importing into secobserve * Convert patch to patchable format * Fix newline at end of file * Forgot changelog entry
1 parent 9566b78 commit 1e2d331

File tree

4 files changed

+46
-0
lines changed

4 files changed

+46
-0
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
66

77
### Added
88

9+
- omid: Added 1.1.3-SNAPSHOT to allow for easier scanning pre-release
910
- airflow: Add OPA support to Airflow ([#978]).
1011
- nifi: Activate `include-hadoop` profile for NiFi version 2.* ([#958]).
1112
- nifi: Add NiFi hadoop Azure and GCP libraries ([#943]).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
From 1296e08c2d202b6b6a4efc5da8670ecd07c7a66c Mon Sep 17 00:00:00 2001
2+
From: =?UTF-8?q?S=C3=B6nke=20Liebau?= <soenke.liebau@stackable.tech>
3+
Date: Tue, 18 Mar 2025 21:37:35 +0100
4+
Subject: Add CycloneDX plugin
5+
6+
---
7+
pom.xml | 17 +++++++++++++++++
8+
1 file changed, 17 insertions(+)
9+
10+
diff --git a/pom.xml b/pom.xml
11+
index 9656bdbe..7a2b114f 100644
12+
--- a/pom.xml
13+
+++ b/pom.xml
14+
@@ -556,6 +556,23 @@
15+
</excludes>
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+
+ </configuration>
26+
+ <executions>
27+
+ <execution>
28+
+ <phase>package</phase>
29+
+ <goals>
30+
+ <goal>makeBom</goal>
31+
+ </goals>
32+
+ </execution>
33+
+ </executions>
34+
+ </plugin>
35+
36+
</plugins>
37+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
upstream = "https://github.com/apache/phoenix-omid.git"
2+
base = "c3e4da626fdb27060fd139a809e057965e52d163"

‎omid/versions.py

+6
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,10 @@
55
"java-devel": "11",
66
"jmx_exporter": "1.1.0",
77
},
8+
{
9+
"product": "1.1.3-SNAPSHOT",
10+
"java-base": "11",
11+
"java-devel": "11",
12+
"jmx_exporter": "1.1.0",
13+
},
814
]

0 commit comments

Comments
 (0)
Please sign in to comment.