This is an automated email from the ASF dual-hosted git repository.

exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new d818f28f43 NIFI-11834 Moved Riemann to optional profile
d818f28f43 is described below

commit d818f28f43df295e2e7d59a96c459ae3d32d9862
Author: exceptionfactory <[email protected]>
AuthorDate: Wed Jul 19 15:55:41 2023 -0500

    NIFI-11834 Moved Riemann to optional profile
    
    Signed-off-by: Pierre Villard <[email protected]>
    
    Cherry-picked and merged from support branch.
    
    This closes #7504.
---
 nifi-assembly/pom.xml                            | 19 ++++++++++++++++++-
 nifi-docs/src/main/asciidoc/developer-guide.adoc |  1 +
 2 files changed, 19 insertions(+), 1 deletion(-)

diff --git a/nifi-assembly/pom.xml b/nifi-assembly/pom.xml
index 8c438b8c30..e20abf7e0e 100644
--- a/nifi-assembly/pom.xml
+++ b/nifi-assembly/pom.xml
@@ -1473,7 +1473,24 @@ language governing permissions and limitations under the 
License. -->
                 <dependency>
                     <groupId>org.apache.nifi</groupId>
                     <artifactId>nifi-asn1-nar</artifactId>
-                    <version>2.0.0-SNAPSHOT</version>
+                    <version>1.23.0-SNAPSHOT</version>
+                    <type>nar</type>
+                </dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <id>include-riemann</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+                <property>
+                    <name>allProfiles</name>
+                </property>
+            </activation>
+            <dependencies>
+                <dependency>
+                    <groupId>org.apache.nifi</groupId>
+                    <artifactId>nifi-riemann-nar</artifactId>
+                    <version>1.23.0-SNAPSHOT</version>
                     <type>nar</type>
                 </dependency>
             </dependencies>
diff --git a/nifi-docs/src/main/asciidoc/developer-guide.adoc 
b/nifi-docs/src/main/asciidoc/developer-guide.adoc
index a31a422d1c..509d81a9ae 100644
--- a/nifi-docs/src/main/asciidoc/developer-guide.adoc
+++ b/nifi-docs/src/main/asciidoc/developer-guide.adoc
@@ -2732,6 +2732,7 @@ deprecationLogger.warn(
 | Graph Database Bundle  | include-graph         | Adds support for various 
common graph database scenarios. Support is currently for 
https://neo4j.com/developer/cypher[Cypher] and 
https://tinkerpop.apache.org/gremlin.html[Gremlin]-compatible databases such as 
Neo4J and JanusGraph. Includes controller services that provide driver 
functionality and a suite of processors for ingestion and querying.
 | GRPC Bundle            | include-grpc          | **This profile is active in 
official builds and should be active** Provides support for the GRPC protocol.
 | Media Bundle           | include-media         | The media bundle provides 
functionality based on https://tika.apache.org[Apache Tika] for extracting 
content and metadata from various types of binary formats supported by Apache 
Tika (ex. PDF, Microsoft Office).
+| Riemann Bundle         | include-riemann       | Adds support for Riemann 
database components
 | Rules Engine Bundle    | include-rules         | Adds support for creating 
scripted rules engines that can be integrated into existing flows. These rules 
engines can provide flexibility to people who need more complex flow logic or 
are more comfortable with flow decision-making using custom code.
 | Snowflake Bundle       | include-snowflake     | Adds support for 
integration with the https://www.snowflake.com[Snowflake platform].
 | SQL Reporting Bundle   | include-sql-reporting | Adds reporting tasks that 
are designed to use SQL to update a RDBMS with metrics and other related data 
from Apache NiFi.

Reply via email to