Github user bbende commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3192#discussion_r237974350
--- Diff:
nifi-nar-bundles/nifi-standard-services/nifi-standard-services-api-nar/pom.xml
---
@@ -26,6 +26,12 @@
<source.skip>true</source.skip>
</properties>
<dependencies>
+ <dependency>
+ <groupId>org.apache.nifi</groupId>
+ <artifactId>nifi-jetty-bundle</artifactId>
+ <version>1.9.0-SNAPSHOT</version>
+ <type>nar</type>
--- End diff --
I'm curious what caused this to be needed. At runtime we automatically make
the Jetty bundle be the parent of any bundle that doesn't specify a dependency.
---