LDAP Setup in Nifi

2020-07-14 Thread Govindprasad, Nirmal
HI,
I am facing issues while setting up the LDAP configuration. If I have 
certificate installed in bowser then it logs me in. otherwise it will ask for 
the username and password and I am unable to use any credentials. Can you 
please help to verify my setup?

I have modified below files. Let me know if there is any other files needs to 
be edited.

nifi.properties
authorizers.xml
login-identity-providers.xml

Thanks and Regards
Nirmal G


This message is confidential and subject to terms at: 
https://www.jpmorgan.com/emaildisclaimer including on confidential, privileged 
or legal entity information, malicious content and monitoring of electronic 
messages. If you are not the intended recipient, please delete this message and 
notify the sender immediately. Any unauthorized use is strictly prohibited.


Re: Derby as DBCP service, error from Kerberos?

2020-07-14 Thread Bryan Bende
It looks like you are missing a dependency in your project...

https://github.com/apache/nifi/blob/main/nifi-nar-bundles/nifi-standard-services/nifi-dbcp-service-bundle/nifi-dbcp-service/pom.xml#L50-L55

On Mon, Jul 13, 2020 at 5:24 PM Russell Bateman 
wrote:

> I'm trying to use Apache Derby as the DBCP controller in JUnit tests.
> For the first test, I start off vetting my ability to inject Derby as
> the DBCP controller I want to use. But, right off, I get this Kerberos
> error. I wasn't trying to use Kerberos, but maybe I'm missing
> configuration to tell that to DBCPConnectionPool?
>
> public void test() throws Exception
> {
>final DBCPConnectionPool service = new DBCPConnectionPool();
>
>  *java.lang.NoClassDefFoundError:
> org/apache/nifi/kerberos/KerberosCredentialsService at
> org.apache.nifi.dbcp.DBCPConnectionPool.(DBCPConnectionPool.java:243)
>
> at com.windofkeltia.processor.TestWithDerby.test(TestWithDerby.java:111)
> < 26 internal calls> Caused by: java.lang.ClassNotFoundException:
> org.apache.nifi.kerberos.KerberosCredentialsService < 2 internal calls >
> at
> java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583)
>
> at
> java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
>
> at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521) ...*
>
>runner.addControllerService( "Derby service", service );
>runner.setProperty( service, DBCPConnectionPool.DATABASE_URL,
> "jdbc:derby:memory:sampledb;create=true" );
>runner.setProperty( service, DBCPConnectionPool.DB_USER,   "sa" );
>runner.setProperty( service, DBCPConnectionPool.DB_PASSWORD,   "sa" );
>runner.setProperty( service, DBCPConnectionPool.DB_DRIVERNAME,
> "org.apache.derby.jdbc.EmbeddedDriver" );
>runner.enableControllerService( service );
>runner.assertValid( service );
>
>final DBCPService derbyService = ( DBCPService )
> runner.getProcessContext()
>
> .getControllerServiceLookup()
>
> .getControllerService( "Derby service" );
>
>// get and verify connections to Derby...
>for( int count = 0; count < 10; count++ )
>{
>  final Connection connection = service.getConnection();
>  if( VERBOSE )
>System.out.println( connection );
>  assertNotNull( connection );
>  assertValidConnectionDerby( connection, count );
>}
>
>final Map< String, String > properties = new HashMap<>();
>runner.setProperty( TestWithDerby.DBCP_SERVICE, "Derby service" );
>runner.setIncomingConnection( false );
>runner.setIncomingConnection( false );
>runner.run();
> }
>
>
>


Re: Derby as DBCP service, error from Kerberos?

2020-07-14 Thread Matt Burgess
Don't forget to include that service with "test" scope so it doesn't
get included in the "real" bundle.

On Tue, Jul 14, 2020 at 9:49 AM Bryan Bende  wrote:
>
> It looks like you are missing a dependency in your project...
>
> https://github.com/apache/nifi/blob/main/nifi-nar-bundles/nifi-standard-services/nifi-dbcp-service-bundle/nifi-dbcp-service/pom.xml#L50-L55
>
> On Mon, Jul 13, 2020 at 5:24 PM Russell Bateman 
> wrote:
>
> > I'm trying to use Apache Derby as the DBCP controller in JUnit tests.
> > For the first test, I start off vetting my ability to inject Derby as
> > the DBCP controller I want to use. But, right off, I get this Kerberos
> > error. I wasn't trying to use Kerberos, but maybe I'm missing
> > configuration to tell that to DBCPConnectionPool?
> >
> > public void test() throws Exception
> > {
> >final DBCPConnectionPool service = new DBCPConnectionPool();
> >
> >  *java.lang.NoClassDefFoundError:
> > org/apache/nifi/kerberos/KerberosCredentialsService at
> > org.apache.nifi.dbcp.DBCPConnectionPool.(DBCPConnectionPool.java:243)
> >
> > at com.windofkeltia.processor.TestWithDerby.test(TestWithDerby.java:111)
> > < 26 internal calls> Caused by: java.lang.ClassNotFoundException:
> > org.apache.nifi.kerberos.KerberosCredentialsService < 2 internal calls >
> > at
> > java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583)
> >
> > at
> > java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
> >
> > at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521) ...*
> >
> >runner.addControllerService( "Derby service", service );
> >runner.setProperty( service, DBCPConnectionPool.DATABASE_URL,
> > "jdbc:derby:memory:sampledb;create=true" );
> >runner.setProperty( service, DBCPConnectionPool.DB_USER,   "sa" );
> >runner.setProperty( service, DBCPConnectionPool.DB_PASSWORD,   "sa" );
> >runner.setProperty( service, DBCPConnectionPool.DB_DRIVERNAME,
> > "org.apache.derby.jdbc.EmbeddedDriver" );
> >runner.enableControllerService( service );
> >runner.assertValid( service );
> >
> >final DBCPService derbyService = ( DBCPService )
> > runner.getProcessContext()
> >
> > .getControllerServiceLookup()
> >
> > .getControllerService( "Derby service" );
> >
> >// get and verify connections to Derby...
> >for( int count = 0; count < 10; count++ )
> >{
> >  final Connection connection = service.getConnection();
> >  if( VERBOSE )
> >System.out.println( connection );
> >  assertNotNull( connection );
> >  assertValidConnectionDerby( connection, count );
> >}
> >
> >final Map< String, String > properties = new HashMap<>();
> >runner.setProperty( TestWithDerby.DBCP_SERVICE, "Derby service" );
> >runner.setIncomingConnection( false );
> >runner.setIncomingConnection( false );
> >runner.run();
> > }
> >
> >
> >


Re: Derby as DBCP service, error from Kerberos?

2020-07-14 Thread Russell Bateman
Thanks for the responses. I did have this dependency already before 
mailing to the forum:


    
    1.11.0
    ...
    
  org.apache.nifi
  *nifi-kerberos-credentials-service*
  ${nifi.version}
    

Other thoughts? I tried debugging through this as both test scope and no 
specified scope. The result is the same.



On 7/14/20 8:12 AM, Matt Burgess wrote:

Don't forget to include that service with "test" scope so it doesn't
get included in the "real" bundle.

On Tue, Jul 14, 2020 at 9:49 AM Bryan Bende  wrote:

It looks like you are missing a dependency in your project...

https://github.com/apache/nifi/blob/main/nifi-nar-bundles/nifi-standard-services/nifi-dbcp-service-bundle/nifi-dbcp-service/pom.xml#L50-L55

On Mon, Jul 13, 2020 at 5:24 PM Russell Bateman 
wrote:


I'm trying to use Apache Derby as the DBCP controller in JUnit tests.
For the first test, I start off vetting my ability to inject Derby as
the DBCP controller I want to use. But, right off, I get this Kerberos
error. I wasn't trying to use Kerberos, but maybe I'm missing
configuration to tell that to DBCPConnectionPool?

public void test() throws Exception
{
final DBCPConnectionPool service = new DBCPConnectionPool();

  *java.lang.NoClassDefFoundError:
org/apache/nifi/kerberos/KerberosCredentialsService at
org.apache.nifi.dbcp.DBCPConnectionPool.(DBCPConnectionPool.java:243)

at com.windofkeltia.processor.TestWithDerby.test(TestWithDerby.java:111)
< 26 internal calls> Caused by: java.lang.ClassNotFoundException:
org.apache.nifi.kerberos.KerberosCredentialsService < 2 internal calls >
at
java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583)

at
java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)

at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521) ...*

runner.addControllerService( "Derby service", service );
runner.setProperty( service, DBCPConnectionPool.DATABASE_URL,
"jdbc:derby:memory:sampledb;create=true" );
runner.setProperty( service, DBCPConnectionPool.DB_USER,   "sa" );
runner.setProperty( service, DBCPConnectionPool.DB_PASSWORD,   "sa" );
runner.setProperty( service, DBCPConnectionPool.DB_DRIVERNAME,
"org.apache.derby.jdbc.EmbeddedDriver" );
runner.enableControllerService( service );
runner.assertValid( service );

final DBCPService derbyService = ( DBCPService )
runner.getProcessContext()

.getControllerServiceLookup()

.getControllerService( "Derby service" );

// get and verify connections to Derby...
for( int count = 0; count < 10; count++ )
{
  final Connection connection = service.getConnection();
  if( VERBOSE )
System.out.println( connection );
  assertNotNull( connection );
  assertValidConnectionDerby( connection, count );
}

final Map< String, String > properties = new HashMap<>();
runner.setProperty( TestWithDerby.DBCP_SERVICE, "Derby service" );
runner.setIncomingConnection( false );
runner.setIncomingConnection( false );
runner.run();
}







Re: Derby as DBCP service, error from Kerberos?

2020-07-14 Thread Bryan Bende
The one I referenced is actually "nifi-kerberos-credentials-service-api"
and you have "nifi-kerberos-credentials-service".

On Tue, Jul 14, 2020 at 10:24 AM Russell Bateman 
wrote:

> Thanks for the responses. I did have this dependency already before
> mailing to the forum:
>
>  
>  1.11.0
>  ...
>  
>org.apache.nifi
>*nifi-kerberos-credentials-service*
>${nifi.version}
>  
>
> Other thoughts? I tried debugging through this as both test scope and no
> specified scope. The result is the same.
>
>
> On 7/14/20 8:12 AM, Matt Burgess wrote:
> > Don't forget to include that service with "test" scope so it doesn't
> > get included in the "real" bundle.
> >
> > On Tue, Jul 14, 2020 at 9:49 AM Bryan Bende  wrote:
> >> It looks like you are missing a dependency in your project...
> >>
> >>
> https://github.com/apache/nifi/blob/main/nifi-nar-bundles/nifi-standard-services/nifi-dbcp-service-bundle/nifi-dbcp-service/pom.xml#L50-L55
> >>
> >> On Mon, Jul 13, 2020 at 5:24 PM Russell Bateman 
> >> wrote:
> >>
> >>> I'm trying to use Apache Derby as the DBCP controller in JUnit tests.
> >>> For the first test, I start off vetting my ability to inject Derby as
> >>> the DBCP controller I want to use. But, right off, I get this Kerberos
> >>> error. I wasn't trying to use Kerberos, but maybe I'm missing
> >>> configuration to tell that to DBCPConnectionPool?
> >>>
> >>> public void test() throws Exception
> >>> {
> >>> final DBCPConnectionPool service = new DBCPConnectionPool();
> >>>
> >>>   *java.lang.NoClassDefFoundError:
> >>> org/apache/nifi/kerberos/KerberosCredentialsService at
> >>>
> org.apache.nifi.dbcp.DBCPConnectionPool.(DBCPConnectionPool.java:243)
> >>>
> >>> at
> com.windofkeltia.processor.TestWithDerby.test(TestWithDerby.java:111)
> >>> < 26 internal calls> Caused by: java.lang.ClassNotFoundException:
> >>> org.apache.nifi.kerberos.KerberosCredentialsService < 2 internal calls
> >
> >>> at
> >>>
> java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583)
> >>>
> >>> at
> >>>
> java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
> >>>
> >>> at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521) ...*
> >>>
> >>> runner.addControllerService( "Derby service", service );
> >>> runner.setProperty( service, DBCPConnectionPool.DATABASE_URL,
> >>> "jdbc:derby:memory:sampledb;create=true" );
> >>> runner.setProperty( service, DBCPConnectionPool.DB_USER,
>  "sa" );
> >>> runner.setProperty( service, DBCPConnectionPool.DB_PASSWORD,
>  "sa" );
> >>> runner.setProperty( service, DBCPConnectionPool.DB_DRIVERNAME,
> >>> "org.apache.derby.jdbc.EmbeddedDriver" );
> >>> runner.enableControllerService( service );
> >>> runner.assertValid( service );
> >>>
> >>> final DBCPService derbyService = ( DBCPService )
> >>> runner.getProcessContext()
> >>>
> >>> .getControllerServiceLookup()
> >>>
> >>> .getControllerService( "Derby service" );
> >>>
> >>> // get and verify connections to Derby...
> >>> for( int count = 0; count < 10; count++ )
> >>> {
> >>>   final Connection connection = service.getConnection();
> >>>   if( VERBOSE )
> >>> System.out.println( connection );
> >>>   assertNotNull( connection );
> >>>   assertValidConnectionDerby( connection, count );
> >>> }
> >>>
> >>> final Map< String, String > properties = new HashMap<>();
> >>> runner.setProperty( TestWithDerby.DBCP_SERVICE, "Derby service" );
> >>> runner.setIncomingConnection( false );
> >>> runner.setIncomingConnection( false );
> >>> runner.run();
> >>> }
> >>>
> >>>
> >>>
>
>


Re: Derby as DBCP service, error from Kerberos?

2020-07-14 Thread Russell Bateman
Oopsie! Okay, too early for my eyes to pick up on that difference. 
Indeed, it works now. Thanks a million, Bryan!


On 7/14/20 8:25 AM, Bryan Bende wrote:

The one I referenced is actually "nifi-kerberos-credentials-service-api"
and you have "nifi-kerberos-credentials-service".

On Tue, Jul 14, 2020 at 10:24 AM Russell Bateman 
wrote:


Thanks for the responses. I did have this dependency already before
mailing to the forum:

  
  1.11.0
  ...
  
org.apache.nifi
nifi-kerberos-credentials-service
${nifi.version}
  

Other thoughts? I tried debugging through this as both test scope and no
specified scope. The result is the same.


On 7/14/20 8:12 AM, Matt Burgess wrote:

Don't forget to include that service with "test" scope so it doesn't
get included in the "real" bundle.

On Tue, Jul 14, 2020 at 9:49 AM Bryan Bende  wrote:

It looks like you are missing a dependency in your project...



https://github.com/apache/nifi/blob/main/nifi-nar-bundles/nifi-standard-services/nifi-dbcp-service-bundle/nifi-dbcp-service/pom.xml#L50-L55

On Mon, Jul 13, 2020 at 5:24 PM Russell Bateman 
wrote:


I'm trying to use Apache Derby as the DBCP controller in JUnit tests.
For the first test, I start off vetting my ability to inject Derby as
the DBCP controller I want to use. But, right off, I get this Kerberos
error. I wasn't trying to use Kerberos, but maybe I'm missing
configuration to tell that to DBCPConnectionPool?

public void test() throws Exception
{
 final DBCPConnectionPool service = new DBCPConnectionPool();

   *java.lang.NoClassDefFoundError:
org/apache/nifi/kerberos/KerberosCredentialsService at


org.apache.nifi.dbcp.DBCPConnectionPool.(DBCPConnectionPool.java:243)

at

com.windofkeltia.processor.TestWithDerby.test(TestWithDerby.java:111)

< 26 internal calls> Caused by: java.lang.ClassNotFoundException:
org.apache.nifi.kerberos.KerberosCredentialsService < 2 internal calls
at


java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583)

at


java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)

at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521) ...*

 runner.addControllerService( "Derby service", service );
 runner.setProperty( service, DBCPConnectionPool.DATABASE_URL,
"jdbc:derby:memory:sampledb;create=true" );
 runner.setProperty( service, DBCPConnectionPool.DB_USER,

  "sa" );

 runner.setProperty( service, DBCPConnectionPool.DB_PASSWORD,

  "sa" );

 runner.setProperty( service, DBCPConnectionPool.DB_DRIVERNAME,
"org.apache.derby.jdbc.EmbeddedDriver" );
 runner.enableControllerService( service );
 runner.assertValid( service );

 final DBCPService derbyService = ( DBCPService )
runner.getProcessContext()

.getControllerServiceLookup()

.getControllerService( "Derby service" );

 // get and verify connections to Derby...
 for( int count = 0; count < 10; count++ )
 {
   final Connection connection = service.getConnection();
   if( VERBOSE )
 System.out.println( connection );
   assertNotNull( connection );
   assertValidConnectionDerby( connection, count );
 }

 final Map< String, String > properties = new HashMap<>();
 runner.setProperty( TestWithDerby.DBCP_SERVICE, "Derby service" );
 runner.setIncomingConnection( false );
 runner.setIncomingConnection( false );
 runner.run();
}









Re: LDAP Setup in Nifi

2020-07-14 Thread Ren Yang
Once you log in Nifi with your certificate, you need to create a user that
already exists your LDAP system. After that, you can use this account to
login Nifi. This step is very important and Nifi wouldn't sync accounts in
your LDAP system.

Govindprasad, Nirmal 
于2020年7月14日周二 下午7:16写道:

> HI,
> I am facing issues while setting up the LDAP configuration. If I have
> certificate installed in bowser then it logs me in. otherwise it will ask
> for the username and password and I am unable to use any credentials. Can
> you please help to verify my setup?
>
> I have modified below files. Let me know if there is any other files needs
> to be edited.
>
> nifi.properties
> authorizers.xml
> login-identity-providers.xml
>
> Thanks and Regards
> Nirmal G
>
>
> This message is confidential and subject to terms at:
> https://www.jpmorgan.com/emaildisclaimer including on confidential,
> privileged or legal entity information, malicious content and monitoring of
> electronic messages. If you are not the intended recipient, please delete
> this message and notify the sender immediately. Any unauthorized use is
> strictly prohibited.
>


-- 
Ren Yang

Thanks & Regards


Re: [discuss] 1.12.0 or 1.11.5...

2020-07-14 Thread Bryan Bende
Spoke with Nathan again and there is still more work to do for OIDC in
registry.

If no one objects, I'll work on kicking out an RC for 0.7.0 tomorrow
morning, and we can land OIDC for the next release, likely an 0.8.0.


On Tue, Jul 7, 2020 at 8:48 AM Bryan Bende  wrote:

> I can be RM for an 0.7.0 registry release.
>
> I spoke with Nathan and he has been making progress on the OIDC support,
> so I will wait a little bit to see if we can get that in, but if it starts
> taking longer then I'll proceed with getting an RC out.
>
> On Mon, Jul 6, 2020 at 5:41 AM Pierre Villard 
> wrote:
>
>> Regarding the NiFi Registry 0.7.0 release - if we can have the OIDC
>> support
>> in it, that would be great. I know Nathan is working on it (based on the
>> JIRA) not sure if this is something close to being ready.
>>
>> Le sam. 4 juil. 2020 à 21:15, Mike Thomsen  a
>> écrit :
>>
>> > FYI, if we add in https://github.com/apache/nifi/pull/4364 and a PR to
>> > deprecate the elasticsearch v5 bundle we can free up about 60MB in the
>> > convenience binary.
>> >
>> > On Thu, Jul 2, 2020 at 10:43 PM Joe Witt  wrote:
>> >
>> > > ...and just saw Bryans note.  Do we need more work before kicking out
>> reg
>> > > release?
>> > >
>> > > On Thu, Jul 2, 2020 at 7:42 PM Joe Witt  wrote:
>> > >
>> > > > 100% same page as Andy.  Mark said later this week he will have some
>> > key
>> > > > bits wrapped.  Lets see where we are then.
>> > > >
>> > > > thanks
>> > > >
>> > > > On Thu, Jul 2, 2020 at 7:22 PM Andy LoPresto 
>> > > wrote:
>> > > >
>> > > >> Martin,
>> > > >>
>> > > >> I understand everyone is anxious to get their hands on the next
>> > release,
>> > > >> but this thread is exactly how we determine what will be in it.
>> There
>> > > is an
>> > > >> inherent balance in determining which features and fixes need to be
>> > > >> included to make the release worth it and which will delay it, and
>> > this
>> > > >> requires being aware of a large percentage of the community’s
>> needs.
>> > > >>
>> > > >> In addition, once a committer has volunteered as release manager
>> > (which
>> > > I
>> > > >> believe Joe has already done for this release), they set the pace
>> and
>> > > will
>> > > >> solicit feedback from the community here. So if Joe replies that he
>> > > wants
>> > > >> to perform the release process on Monday, any non-critical tickets
>> > (i.e.
>> > > >> features, non-security bug fixes, etc.) which are not merged will
>> not
>> > go
>> > > >> into 1.12.0. However, we often do wait to perform the release
>> process
>> > > until
>> > > >> specifically enumerated features are reviewed and merged so they
>> can
>> > be
>> > > >> included.
>> > > >>
>> > > >> One way to encourage the timely release of the next version is to
>> > offer
>> > > >> code reviews and other community activities where possible, because
>> > that
>> > > >> helps move everything forward. In the early days of the project,
>> the
>> > > user
>> > > >> base and the contributor base overlapped highly, and it was easier
>> to
>> > > >> solicit reviews on all contributions because the majority of the
>> other
>> > > >> active people were also developers. Over the last 5 years, both the
>> > > >> contributor base and the user base have grown substantially, but
>> the
>> > > user
>> > > >> base has grown far faster than the contributor base. For this
>> reason,
>> > we
>> > > >> have many more people asking for features, releases, etc. than can
>> > > >> contribute them.
>> > > >>
>> > > >> Part of being a community is helping where possible, with the
>> > > >> understanding that not everyone will have the time, expertise, or
>> > > desire to
>> > > >> do all tasks. But the most constructive way to speed the release
>> > > process is
>> > > >> for the outstanding tickets whose inclusion is determined to be
>> > > necessary
>> > > >> to be reviewed and merged.
>> > > >>
>> > > >>
>> > > >> Andy LoPresto
>> > > >> alopre...@apache.org
>> > > >> alopresto.apa...@gmail.com
>> > > >> He/Him
>> > > >> PGP Fingerprint: 70EC B3E5 98A6 5A3F D3C4  BACE 3C6E F65B 2F7D EF69
>> > > >>
>> > > >> > On Jul 2, 2020, at 7:09 PM, Mike Thomsen > >
>> > > >> wrote:
>> > > >> >
>> > > >> > ** that's not to say I'll try to hold up a release vote over it,
>> but
>> > > >> there
>> > > >> > is a good reason behind asking that it be included in the last
>> round
>> > > of
>> > > >> > reviews.
>> > > >> >
>> > > >> > On Thu, Jul 2, 2020 at 10:07 PM Mike Thomsen <
>> > mikerthom...@gmail.com>
>> > > >> wrote:
>> > > >> >
>> > > >> >> #4217 is something I need because I'm planning to build a
>> > > >> Cassandra-based
>> > > >> >> DistributedMapCache service for my client and contribute it back
>> > once
>> > > >> we
>> > > >> >> determine that it's stable enough to give back.
>> > > >> >>
>> > > >> >> On Thu, Jul 2, 2020 at 9:26 PM Martin Ebert <
>> martin.irg...@gmx.de>
>> > > >> wrote:
>> > > >> >>
>> > > >> >>> Hi Mike,
>> > > >> >>> I suggest we wrap this up and only include yo

NiFi NAR plugin repo

2020-07-14 Thread Mike Thomsen
Where is the repo for the NAR plugin?

Thanks,

Mike


Re: NiFi NAR plugin repo

2020-07-14 Thread Kevin Doran
Hi Mike,

Is this what you are looking for?
https://github.com/apache/nifi-maven 

Hope this helps,
Kevin

> On Jul 14, 2020, at 14:36, Mike Thomsen  wrote:
> 
> Where is the repo for the NAR plugin?
> 
> Thanks,
> 
> Mike



Re: NiFi NAR plugin repo

2020-07-14 Thread Mike Thomsen
Yeah, thanks.

On Tue, Jul 14, 2020 at 4:21 PM Kevin Doran  wrote:
>
> Hi Mike,
>
> Is this what you are looking for?
> https://github.com/apache/nifi-maven 
>
> Hope this helps,
> Kevin
>
> > On Jul 14, 2020, at 14:36, Mike Thomsen  wrote:
> >
> > Where is the repo for the NAR plugin?
> >
> > Thanks,
> >
> > Mike
>