Github user zenfenan commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2653#discussion_r184338421
--- Diff:
nifi-nar-bundles/nifi-jms-bundle/nifi-jms-processors/src/main/java/org/apache/nifi/jms/cf/JMSConnectionFactoryProvider.java
---
@@ -97,7 +96,7 @@
.description("Path to the directory with additional resources
(i.e., JARs, configuration files etc.) to be added "
+ "to the classpath. Such resources typically
represent target MQ client libraries for the "
+ "ConnectionFactory implementation.")
- .addValidator(new ClientLibValidator())
+ .addValidator(StandardValidators.createListValidator(true,
true, StandardValidators.createURLorFileValidator()))
--- End diff --
Yep. Thanks for pointing out. I have modified the processor to accept a
comma separated list of paths that can be added to Classpath and moreover it
would leverage `ClassLoaderUtils` thereby avoiding duplicate.
---