Cannot build code base - error with "mvn -T C2.0 clean install"

2015-09-10 Thread DomenicPuzio
Hello, I have followed the instructions at http://nifi.apache.org/quickstart.html and I am now on step 4, trying to build the code base with the command "mvn -T C2.0 clean install". Maven begins downloading and runs smoothly for 1 minutes and 38 seconds, until I hit the below error. I am on an AW

Re: Cannot build code base - error with "mvn -T C2.0 clean install"

2015-09-10 Thread Matt Gilman
Can you confirm the version of Maven (mvn -version) and Java (java -version)? Thanks. On Thu, Sep 10, 2015 at 11:08 AM, DomenicPuzio wrote: > Hello, > > I have followed the instructions at http://nifi.apache.org/quickstart.html > and I am now on step 4, trying to build the code base with the co

Re: Cannot build code base - error with "mvn -T C2.0 clean install"

2015-09-10 Thread Matt Gilman
Can you also confirm that you have a JDK installed and that javac is available on your PATH? Thanks. On Thu, Sep 10, 2015 at 11:45 AM, Matt Gilman wrote: > Can you confirm the version of Maven (mvn -version) and Java (java > -version)? > > Thanks. > > On Thu, Sep 10, 2015 at 11:08 AM, DomenicPu

Re: Cannot build code base - error with "mvn -T C2.0 clean install"

2015-09-10 Thread DomenicPuzio
Thank you so much for the quick reply! I think that it was the fact that I did not have "javac" on my path. However, a new error arose when I tried to run "mvn -T C2.0 clean install" - please take a look. I really appreciate it! [ERROR] Failed to execute goal on project nifi-storm-spout: Could no

Re: Cannot build code base - error with "mvn -T C2.0 clean install"

2015-09-10 Thread Matt Gilman
It seems to be having trouble getting clj-time:0.4.1 (which is a dependency of storm-core:0.9.5) from an artifact repository. Do you have any settings that might override maven defaults in your settings.xml? Matt On Thu, Sep 10, 2015 at 1:16 PM, DomenicPuzio wrote: > Thank you so much for the q

Re: Cannot build code base - error with "mvn -T C2.0 clean install"

2015-09-10 Thread DomenicPuzio
nabble.com>> Date: Thursday, September 10, 2015 at 1:26 PM To: Domenic Puzio mailto:domenic.pu...@capitalone.com>> Subject: Re: Cannot build code base - error with "mvn -T C2.0 clean install" It seems to be having trouble getting clj-time:0.4.1 (which is a dependency of st

Re: Cannot build code base - error with "mvn -T C2.0 clean install"

2015-09-10 Thread Matt Gilman
To: Domenic Puzio domenic.pu...@capitalone.com>> > Subject: Re: Cannot build code base - error with "mvn -T C2.0 clean > install" > > It seems to be having trouble getting clj-time:0.4.1 (which is a dependency > of storm-core:0.9.5) from an artifact repository. Do y

Re: Cannot build code base - error with "mvn -T C2.0 clean install"

2015-09-10 Thread Matt Gilman
.nabble.com> ml-node+s39713n2757...@n7.nabble.com>> >> Date: Thursday, September 10, 2015 at 1:26 PM >> To: Domenic Puzio > domenic.pu...@capitalone.com>> >> Subject: Re: Cannot build code base - error with "mvn -T C2.0 clean >> install" >> >

Re: Cannot build code base - error with "mvn -T C2.0 clean install"

2015-09-10 Thread DomenicPuzio
Yes, I manually replaced the when sending the email. I was able to build this far and successfully pull down the other dependencies. For some reason it’s just breaking on clj-time. I never specify as to where my proxy is going, I just say which proxy server to use in order to access the Intern

Re: Cannot build code base - error with "mvn -T C2.0 clean install"

2015-09-10 Thread Matt Gilman
Can you run Maven in debug mode? That is done using the -X flag. I'd suggest only doing so on the specific project that's having trouble. Specifically, /nifi-external/nifi-storm-spout The output is super verbose so I'd also recommend directing that to a file. Wondering if there is an more details

Re: Cannot build code base - error with "mvn -T C2.0 clean install"

2015-09-11 Thread DomenicPuzio
Matt, thank you so much for all of your help! I was able to resolve the error on my own – it was an issue with my proxy setup. I appreciate your time and assistance! The information contained in this e-mail is confidential and/or proprieta

Re: Cannot build code base - error with "mvn -T C2.0 clean install"

2015-09-11 Thread Karl Heinz Marbaise
Hi, On 9/10/15 5:08 PM, DomenicPuzio wrote: Hello, I have followed the instructions at http://nifi.apache.org/quickstart.html and I am now on step 4, trying to build the code base with the command "mvn -T C2.0 clean install". With which Maven version do you try to build ? Maven begins down

Re: Cannot build code base - error with "mvn -T C2.0 clean install"

2015-09-11 Thread DomenicPuzio
Hi Karl, I had to run “sudo yum install java-devel” on my intance to make sure that I had the version of Java that I needed. I also made sure that my JAVA_HOME environment variable was set correctly. This resolved the “javac” issue. Domenic __