Hi team,
I am using NiFi NAR maven plugin to build my processor NAR. I have an external
JAR dependency
and I add it as system scope dependency in the pom file as below.
<dependency>
<groupId>xxxx</groupId>
<artifactId>xxxx</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/my.jar</systemPath>
</dependency>
The problem is this JAR file not copied and packaged in NAR under
/bundled-dependencies/ . It would cause ClassNotFound exception.
Is there any configuration for this NAR plugin to solve this problem? I can't
find any related document on it.
Thanks and Regards,
Kevin H K YANG