Github user bbende commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2805#discussion_r196906833
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml ---
@@ -327,6 +327,10 @@
<version>1.7.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>com.github.palindromicity</groupId>
+ <artifactId>simple-syslog-5424</artifactId>
+ </dependency>
--- End diff --
Since this transitively brings in antlr-runtime (I think) then we probably
need to account for that in the NAR and assembly LICENSE/NOTICE.
From a quick glance it looks like antlr is BSD 3-Clause so it probably goes
in the LICENSE files with the verbiage like: "The binary distribution of this
product bundles 'antlr-runtime' which is available under a "3-clause BSD"
license."
---