Re: Maven Build Error - nifi-properties-loader sub-project test failures

2019-10-10 Thread Adam Taft
Yeah, I've been suspicious that maybe Maven 3.3.9 is too old to build NiFi. We say[1] that Maven 3.1.0+ is required, but that's a really old version. It's possible or even likely that some Maven plugins used in the NiFi build are expecting services from newer Maven versions. I don't have a

Re: Maven Build Error - nifi-properties-loader sub-project test failures

2019-10-09 Thread Joe Witt
Yes I was. And ehh yeah you're probably right. Update maven and jdk and see what comes out. I've seen similar-ish problems when those settings aren't applied but in this case it might not apply. On Thu, Oct 10, 2019 at 1:28 AM Adam Taft wrote: > Joe, > > Are you referring to git config

Re: Maven Build Error - nifi-properties-loader sub-project test failures

2019-10-09 Thread Adam Taft
Joe, Are you referring to git config options "core.longpaths" and "core.autocrlf"? I wouldn't have thought these settings would be important for Mac users (as is Aram)? Honestly just asking what the experience is here. I can build from master on my Mac with latest Java and Maven, without those

Re: Maven Build Error - nifi-properties-loader sub-project test failures

2019-10-09 Thread Joe Witt
Adam, Aram, I'd be suspicious of your git settings relative to what we suggest here: http://nifi.apache.org/quickstart.html It seems like it is reading material from files (test files) and they don't contain what is expected so I wonder about git settings. Thanks Joe On Thu, Oct 10, 2019 at

Re: Maven Build Error - nifi-properties-loader sub-project test failures

2019-10-09 Thread Adam Taft
Aram, Just to rule out the obvious ... Can you update your Maven and Java versions, which would include: - Maven 3.6.2 - Java 1.8.0_222 Also, are you including a MAVEN_OPTS environment to increase your JVM memory in Maven? $> export MAVEN_OPTS="-Xms1g -Xmx3g" Thanks, Adam On Wed, Oct 9, 2019

Maven Build Error - nifi-properties-loader sub-project test failures

2019-10-09 Thread Aram Openden
Hoping someone on this dev mailing list can help with the following maven build failures issue. I am hoping to contribute a new suggested custom S3 Processor that I have been working on. But, I need to be able to get the build to work locally before I even start adding in my changes. I am trying