Re: adding dependencies like jdbc drivers to the build

2016-08-22 Thread Matt Burgess
t; > > > From: Sumanth Chinthagunta [mailto:xmlk...@gmail.com] > Sent: Thursday, August 18, 2016 8:56 PM > To: users@nifi.apache.org > Subject: Re: adding dependencies like jdbc drivers to the build > > > > It would be nice if we support relative paths for driver jar. E.g.

Re: adding dependencies like jdbc drivers to the build

2016-08-19 Thread Joe Witt
ld, probably comma delimited? I have one JDBC driver that for > whatever reason requires two separate JAR’s. > > > > From: Joe Witt [mailto:joe.w...@gmail.com] > Sent: Friday, August 19, 2016 5:30 AM > To: users@nifi.apache.org > Subject: RE: adding dependencies like jdbc

RE: adding dependencies like jdbc drivers to the build

2016-08-19 Thread Peter Wicks (pwicks)
@nifi.apache.org Subject: RE: adding dependencies like jdbc drivers to the build Adding jars to the lib directory is not ideal as it pollutes all classloaders. We should add expression language support to the path property if it isn't already as that makes variable registry access available which makes use

RE: adding dependencies like jdbc drivers to the build

2016-08-19 Thread Joe Witt
BC drivers in my lib directory to make them available for whoever needs them (MS SQL, SAP Hana, Teradata, and will add Oracle soon). --Peter *From:* Sumanth Chinthagunta [mailto:xmlk...@gmail.com] *Sent:* Thursday, August 18, 2016 8:56 PM *To:* users@nifi.apache.org *Subject:* Re: adding depend

Re: adding dependencies like jdbc drivers to the build

2016-08-18 Thread Sumanth Chinthagunta
It would be nice if we support relative paths for driver jar. E.g., ./lib/mariadb-java-client-1.1.7.jar This let flow templet portable (dev -> prod) Sent from my iPhone > On Aug 18, 2016, at 2:25 PM, Bryan Bende wrote: > > For JDBC, if you are talking about the

Re: adding dependencies like jdbc drivers to the build

2016-08-18 Thread Bryan Bende
For JDBC, if you are talking about the DBConnectionPool, you should be able to reference a driver as an external file such as file:///var/tmp/mariadb-java-client-1.1.7.jar' If you are talking about something different besides the DBConnectionPool then it depends what processor/component... If you