Re: [VOTE] Release Apache NiFi 0.7.1 (RC1)

2016-10-18 Thread Koji Kawamura
+1 (non-binding)

- git tag and commit ID verified
- Downloaded nifi-0.7.1-source-release.zip and verified hashes
- Full build finished without issue
- Application runs without issue on Mac with java 1.8.0_111-b14

- Found a trivial typo on release note wiki page, updated the wiki
page: JolTransformJSON -> JoltTransformJSON

On Wed, Oct 19, 2016 at 3:40 AM, Tony Kurc  wrote:
> +1 (binding)
>
> reviewed License and notice
> Built successfully from source using openjdk 1.8.0 on amazon linux.
> verified hashes and signature
> ran a few simple flows without issue
>
>
>
>
> On Tue, Oct 18, 2016 at 2:28 PM, Michael Moser  wrote:
>
>> +1 (non-binding)
>>
>> git tag and commit ID verified
>> Downloaded nifi-0.7.1-source-release.zip and verified hashes
>> Source builds with RAT checks using Java 1.7.0_79
>> Application runs and a few templates work as expected on CentOS 6
>>
>>
>>
>> On Tue, Oct 18, 2016 at 1:38 PM, Joe Skora  wrote:
>>
>> > Yeah, I'll get my keys added.  I didn't want to move the target commit
>> once
>> > we had that zeroed in.
>> >
>> >
>> > On Tue, Oct 18, 2016 at 6:27 PM, Joe Witt  wrote:
>> >
>> > > +1 (binding).
>> > >
>> > > full build verification steps all passed/were as expected.  L looks
>> > > good.  Simple live testing behaved as expected.
>> > >
>> > > Something to address for future purposes is please don't forget to add
>> > > your keys to the KEYS file in the 0.x and master.
>> > >
>> > > Thanks for stepping up to take on the RM work and nice job.
>> > >
>> > > Joe
>> > >
>> > > On Tue, Oct 18, 2016 at 12:40 PM, James Wing  wrote:
>> > > > +1, I was able to verify hashes, build with tests and checks, run
>> NiFi
>> > > and
>> > > > do simple testing.  Thanks for putting this release together, Joe.
>> > > >
>> > > >
>> > > > On Sun, Oct 16, 2016 at 8:32 PM, Joe Skora 
>> wrote:
>> > > >
>> > > >> Hello,
>> > > >>
>> > > >> I am pleased to be calling this vote for the source release of
>> Apache
>> > > NiFi
>> > > >> nifi-0.7.1.
>> > > >>
>> > > >> The source zip, including signatures, digests, etc. can be found at:
>> > > >> https://repository.apache.org/content/repositories/
>> orgapachenifi-1091
>> > > >>
>> > > >> The Git tag is nifi-0.7.1-RC1
>> > > >> The Git commit ID is 421d5e61553e5fa160af9e0cc9fdc237af46906d
>> > > >> *
>> > > >> https://git-wip-us.apache.org/repos/asf?p=nifi.git;a=commit;h=
>> > > >> 421d5e61553e5fa160af9e0cc9fdc237af46906d
>> > > >> *
>> > > >> https://github.com/apache/nifi/commit/
>> 421d5e61553e5fa160af9e0cc9fdc2
>> > > >> 37af46906d
>> > > >>
>> > > >> Checksums of nifi-0.7.1-source-release.zip:
>> > > >> MD5: a15fc40ec887d82440f2de05ef71f810
>> > > >> SHA1: 1565f4e123478e91fd26022b939d9d2f6ea6a2cf
>> > > >>
>> > > >> Release artifacts are signed with the following key:
>> > > >> https://people.apache.org/keys/committer/jskora.asc
>> > > >>
>> > > >> KEYS file available here:
>> > > >> https://dist.apache.org/repos/dist/release/nifi/KEYS
>> > > >>
>> > > >> 41 issues were closed/resolved for this release:
>> > > >> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
>> > > >> projectId=12316020=12338025
>> > > >>
>> > > >> Release note highlights can be found here:
>> > > >> https://cwiki.apache.org/confluence/display/NIFI/
>> > > >> Release+Notes#ReleaseNotes-Version0.7.1
>> > > >>
>> > > >> The vote will be open for 72 hours.
>> > > >> Please download the release candidate and evaluate the necessary
>> items
>> > > >> including checking hashes, signatures, build from source, and test.
>> > The
>> > > >> please vote:
>> > > >>
>> > > >> [ ] +1 Release this package as nifi-0.7.1
>> > > >> [ ] +0 no opinion
>> > > >> [ ] -1 Do not release this package because because...
>> > > >>
>> > >
>> >
>>


Re: PutDynamoDB processor

2016-10-18 Thread Gop Krr
Hi James,
I have started exploring the option of building the scan operator for the
DynamoDB.
I will let you know, how is it going.
Thanks
Rai

On Fri, Oct 14, 2016 at 11:42 AM, James Wing  wrote:

> Correct, but I'm afraid I'm no expert on DynamoDB.  It is my understanding
> that you have to iterate through the keys in the source table one-by-one,
> then put each key's content into the destination table.  You can speed this
> up by using multiple iterators, each covering a distinct portion of the key
> range.
>
> Amazon does provide tools as part of AWS Data Pipeline that might help
> automate this, and if all you want is an identical export and import, that
> is probably easier than NiFi.  But I believe the underlying process is very
> similar, just that Amazon using an ElasticMapReduce cluster instead of
> NiFi.  A key point being that the export and import operations count
> against your provisioned throughput, Amazon provides no shortcut around
> paying for the I/O.  But this might work now, today, without any custom
> code.
>
> Cross-Region Export and Import of DynamoDB Tables
> https://aws.amazon.com/blogs/aws/cross-region-import-and-
> export-of-dynamodb-tables/
>
> AWS Data Pipeline - Export DynamoDB Table to S3
> http://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-template-
> exportddbtos3.html
>
> AWS Data Pipeline - Import DynamoDB Backup Data from S3
> http://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-template-
> exports3toddb.html
>
> Thanks,
>
> James
>
>
> On Fri, Oct 14, 2016 at 10:58 AM, Gop Krr  wrote:
>
>> Thanks James. I would be happy to contribute the scan processor for
>> DynamoDB. Just to clarify, based on your comment, we can't take all the
>> rows of the DynamoDB table and put it into another table. We have to do it
>> for one record at a time?
>>
>> On Fri, Oct 14, 2016 at 10:50 AM, James Wing  wrote:
>>
>>> NiFi's GetDynamoDB processor uses the underlying BatchGetItem API, which
>>> requires item keys as inputs.  Iterating over the keys in a table would
>>> require the Scan API, but NiFi does not have a processor to scan a DynamoDB
>>> table.
>>>
>>> This would be a great addition to NiFi.  If you have any interest in
>>> working on a scan processor, please open a JIRA ticket at
>>> https://issues.apache.org/jira/browse/NIFI.
>>>
>>> Thanks,
>>>
>>> James
>>>
>>> On Thu, Oct 13, 2016 at 2:12 PM, Gop Krr  wrote:
>>>
 Thanks James. I am looking to iterate through the table so that it
 takes hash key values one by one. Do I achieve it through the expression
 language? if I write an script to do that, how do I pass it to my 
 processor?
 Thanks
 Niraj

 On Thu, Oct 13, 2016 at 1:42 PM, James Wing  wrote:

> Rai,
>
> The GetDynamoDB processor requires a hash key value to look up an item
> in the table.  The default setting is an Expression Language statement 
> that
> reads the hash key value from a flowfile attribute,
> dynamodb.item.hash.key.value.  But this is not required.  You can change 
> it
> to any attribute expression ${my.hash.key}, or even hard-code a single key
> "item123" if you wish.
>
> Does that help?
>
> Thanks,
>
> James
>
> On Thu, Oct 13, 2016 at 12:17 PM, Gop Krr  wrote:
>
>> Hi All,
>> I have been trying to use get and load processor for the dynamodb and
>> I am almost there. I am able to run the get processor and I see, data is
>> flowing :)
>> But I see the following error in my nifi-app.log file:
>>
>> 2016-10-13 18:02:38,823 ERROR [Timer-Driven Process Thread-9]
>> o.a.n.p.aws.dynamodb.GetDynamoDB 
>> GetDynamoDB[id=7d906337-0157-1000-5868-479d0e0e3580]
>> Hash key value '' is required for flow file 
>> StandardFlowFileRecord[uuid=44
>> 554c23-1618-47db-b46e-04ffd737748e,claim=StandardContentClaim
>> [resourceClaim=StandardResourceClaim[id=1476381755460-37287,
>> container=default, section=423], offset=0, length=1048576],offset=0,name=
>> 2503473718684086,size=1048576]
>>
>>
>> I understand that, its looking for the Hash Key Value but I am not
>> sure, how do I pass it.  In the setting tab, nifi automatically populates
>> this: ${dynamodb.item.hash.key.value} but looks like this is not the
>> right way to do it. Can I get some guidance on this? Thanks for all the
>> help.
>>
>> Best,
>>
>> Rai
>>
>
>

>>>
>>
>


Re: [VOTE] Release Apache NiFi 0.7.1 (RC1)

2016-10-18 Thread Tony Kurc
+1 (binding)

reviewed License and notice
Built successfully from source using openjdk 1.8.0 on amazon linux.
verified hashes and signature
ran a few simple flows without issue




On Tue, Oct 18, 2016 at 2:28 PM, Michael Moser  wrote:

> +1 (non-binding)
>
> git tag and commit ID verified
> Downloaded nifi-0.7.1-source-release.zip and verified hashes
> Source builds with RAT checks using Java 1.7.0_79
> Application runs and a few templates work as expected on CentOS 6
>
>
>
> On Tue, Oct 18, 2016 at 1:38 PM, Joe Skora  wrote:
>
> > Yeah, I'll get my keys added.  I didn't want to move the target commit
> once
> > we had that zeroed in.
> >
> >
> > On Tue, Oct 18, 2016 at 6:27 PM, Joe Witt  wrote:
> >
> > > +1 (binding).
> > >
> > > full build verification steps all passed/were as expected.  L looks
> > > good.  Simple live testing behaved as expected.
> > >
> > > Something to address for future purposes is please don't forget to add
> > > your keys to the KEYS file in the 0.x and master.
> > >
> > > Thanks for stepping up to take on the RM work and nice job.
> > >
> > > Joe
> > >
> > > On Tue, Oct 18, 2016 at 12:40 PM, James Wing  wrote:
> > > > +1, I was able to verify hashes, build with tests and checks, run
> NiFi
> > > and
> > > > do simple testing.  Thanks for putting this release together, Joe.
> > > >
> > > >
> > > > On Sun, Oct 16, 2016 at 8:32 PM, Joe Skora 
> wrote:
> > > >
> > > >> Hello,
> > > >>
> > > >> I am pleased to be calling this vote for the source release of
> Apache
> > > NiFi
> > > >> nifi-0.7.1.
> > > >>
> > > >> The source zip, including signatures, digests, etc. can be found at:
> > > >> https://repository.apache.org/content/repositories/
> orgapachenifi-1091
> > > >>
> > > >> The Git tag is nifi-0.7.1-RC1
> > > >> The Git commit ID is 421d5e61553e5fa160af9e0cc9fdc237af46906d
> > > >> *
> > > >> https://git-wip-us.apache.org/repos/asf?p=nifi.git;a=commit;h=
> > > >> 421d5e61553e5fa160af9e0cc9fdc237af46906d
> > > >> *
> > > >> https://github.com/apache/nifi/commit/
> 421d5e61553e5fa160af9e0cc9fdc2
> > > >> 37af46906d
> > > >>
> > > >> Checksums of nifi-0.7.1-source-release.zip:
> > > >> MD5: a15fc40ec887d82440f2de05ef71f810
> > > >> SHA1: 1565f4e123478e91fd26022b939d9d2f6ea6a2cf
> > > >>
> > > >> Release artifacts are signed with the following key:
> > > >> https://people.apache.org/keys/committer/jskora.asc
> > > >>
> > > >> KEYS file available here:
> > > >> https://dist.apache.org/repos/dist/release/nifi/KEYS
> > > >>
> > > >> 41 issues were closed/resolved for this release:
> > > >> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> > > >> projectId=12316020=12338025
> > > >>
> > > >> Release note highlights can be found here:
> > > >> https://cwiki.apache.org/confluence/display/NIFI/
> > > >> Release+Notes#ReleaseNotes-Version0.7.1
> > > >>
> > > >> The vote will be open for 72 hours.
> > > >> Please download the release candidate and evaluate the necessary
> items
> > > >> including checking hashes, signatures, build from source, and test.
> > The
> > > >> please vote:
> > > >>
> > > >> [ ] +1 Release this package as nifi-0.7.1
> > > >> [ ] +0 no opinion
> > > >> [ ] -1 Do not release this package because because...
> > > >>
> > >
> >
>


Re: [VOTE] Release Apache NiFi 0.7.1 (RC1)

2016-10-18 Thread Michael Moser
+1 (non-binding)

git tag and commit ID verified
Downloaded nifi-0.7.1-source-release.zip and verified hashes
Source builds with RAT checks using Java 1.7.0_79
Application runs and a few templates work as expected on CentOS 6



On Tue, Oct 18, 2016 at 1:38 PM, Joe Skora  wrote:

> Yeah, I'll get my keys added.  I didn't want to move the target commit once
> we had that zeroed in.
>
>
> On Tue, Oct 18, 2016 at 6:27 PM, Joe Witt  wrote:
>
> > +1 (binding).
> >
> > full build verification steps all passed/were as expected.  L looks
> > good.  Simple live testing behaved as expected.
> >
> > Something to address for future purposes is please don't forget to add
> > your keys to the KEYS file in the 0.x and master.
> >
> > Thanks for stepping up to take on the RM work and nice job.
> >
> > Joe
> >
> > On Tue, Oct 18, 2016 at 12:40 PM, James Wing  wrote:
> > > +1, I was able to verify hashes, build with tests and checks, run NiFi
> > and
> > > do simple testing.  Thanks for putting this release together, Joe.
> > >
> > >
> > > On Sun, Oct 16, 2016 at 8:32 PM, Joe Skora  wrote:
> > >
> > >> Hello,
> > >>
> > >> I am pleased to be calling this vote for the source release of Apache
> > NiFi
> > >> nifi-0.7.1.
> > >>
> > >> The source zip, including signatures, digests, etc. can be found at:
> > >> https://repository.apache.org/content/repositories/orgapachenifi-1091
> > >>
> > >> The Git tag is nifi-0.7.1-RC1
> > >> The Git commit ID is 421d5e61553e5fa160af9e0cc9fdc237af46906d
> > >> *
> > >> https://git-wip-us.apache.org/repos/asf?p=nifi.git;a=commit;h=
> > >> 421d5e61553e5fa160af9e0cc9fdc237af46906d
> > >> *
> > >> https://github.com/apache/nifi/commit/421d5e61553e5fa160af9e0cc9fdc2
> > >> 37af46906d
> > >>
> > >> Checksums of nifi-0.7.1-source-release.zip:
> > >> MD5: a15fc40ec887d82440f2de05ef71f810
> > >> SHA1: 1565f4e123478e91fd26022b939d9d2f6ea6a2cf
> > >>
> > >> Release artifacts are signed with the following key:
> > >> https://people.apache.org/keys/committer/jskora.asc
> > >>
> > >> KEYS file available here:
> > >> https://dist.apache.org/repos/dist/release/nifi/KEYS
> > >>
> > >> 41 issues were closed/resolved for this release:
> > >> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> > >> projectId=12316020=12338025
> > >>
> > >> Release note highlights can be found here:
> > >> https://cwiki.apache.org/confluence/display/NIFI/
> > >> Release+Notes#ReleaseNotes-Version0.7.1
> > >>
> > >> The vote will be open for 72 hours.
> > >> Please download the release candidate and evaluate the necessary items
> > >> including checking hashes, signatures, build from source, and test.
> The
> > >> please vote:
> > >>
> > >> [ ] +1 Release this package as nifi-0.7.1
> > >> [ ] +0 no opinion
> > >> [ ] -1 Do not release this package because because...
> > >>
> >
>


Re: [VOTE] Release Apache NiFi 0.7.1 (RC1)

2016-10-18 Thread Joe Skora
Yeah, I'll get my keys added.  I didn't want to move the target commit once
we had that zeroed in.


On Tue, Oct 18, 2016 at 6:27 PM, Joe Witt  wrote:

> +1 (binding).
>
> full build verification steps all passed/were as expected.  L looks
> good.  Simple live testing behaved as expected.
>
> Something to address for future purposes is please don't forget to add
> your keys to the KEYS file in the 0.x and master.
>
> Thanks for stepping up to take on the RM work and nice job.
>
> Joe
>
> On Tue, Oct 18, 2016 at 12:40 PM, James Wing  wrote:
> > +1, I was able to verify hashes, build with tests and checks, run NiFi
> and
> > do simple testing.  Thanks for putting this release together, Joe.
> >
> >
> > On Sun, Oct 16, 2016 at 8:32 PM, Joe Skora  wrote:
> >
> >> Hello,
> >>
> >> I am pleased to be calling this vote for the source release of Apache
> NiFi
> >> nifi-0.7.1.
> >>
> >> The source zip, including signatures, digests, etc. can be found at:
> >> https://repository.apache.org/content/repositories/orgapachenifi-1091
> >>
> >> The Git tag is nifi-0.7.1-RC1
> >> The Git commit ID is 421d5e61553e5fa160af9e0cc9fdc237af46906d
> >> *
> >> https://git-wip-us.apache.org/repos/asf?p=nifi.git;a=commit;h=
> >> 421d5e61553e5fa160af9e0cc9fdc237af46906d
> >> *
> >> https://github.com/apache/nifi/commit/421d5e61553e5fa160af9e0cc9fdc2
> >> 37af46906d
> >>
> >> Checksums of nifi-0.7.1-source-release.zip:
> >> MD5: a15fc40ec887d82440f2de05ef71f810
> >> SHA1: 1565f4e123478e91fd26022b939d9d2f6ea6a2cf
> >>
> >> Release artifacts are signed with the following key:
> >> https://people.apache.org/keys/committer/jskora.asc
> >>
> >> KEYS file available here:
> >> https://dist.apache.org/repos/dist/release/nifi/KEYS
> >>
> >> 41 issues were closed/resolved for this release:
> >> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> >> projectId=12316020=12338025
> >>
> >> Release note highlights can be found here:
> >> https://cwiki.apache.org/confluence/display/NIFI/
> >> Release+Notes#ReleaseNotes-Version0.7.1
> >>
> >> The vote will be open for 72 hours.
> >> Please download the release candidate and evaluate the necessary items
> >> including checking hashes, signatures, build from source, and test.  The
> >> please vote:
> >>
> >> [ ] +1 Release this package as nifi-0.7.1
> >> [ ] +0 no opinion
> >> [ ] -1 Do not release this package because because...
> >>
>


Re: [VOTE] Release Apache NiFi 0.7.1 (RC1)

2016-10-18 Thread Joe Witt
+1 (binding).

full build verification steps all passed/were as expected.  L looks
good.  Simple live testing behaved as expected.

Something to address for future purposes is please don't forget to add
your keys to the KEYS file in the 0.x and master.

Thanks for stepping up to take on the RM work and nice job.

Joe

On Tue, Oct 18, 2016 at 12:40 PM, James Wing  wrote:
> +1, I was able to verify hashes, build with tests and checks, run NiFi and
> do simple testing.  Thanks for putting this release together, Joe.
>
>
> On Sun, Oct 16, 2016 at 8:32 PM, Joe Skora  wrote:
>
>> Hello,
>>
>> I am pleased to be calling this vote for the source release of Apache NiFi
>> nifi-0.7.1.
>>
>> The source zip, including signatures, digests, etc. can be found at:
>> https://repository.apache.org/content/repositories/orgapachenifi-1091
>>
>> The Git tag is nifi-0.7.1-RC1
>> The Git commit ID is 421d5e61553e5fa160af9e0cc9fdc237af46906d
>> *
>> https://git-wip-us.apache.org/repos/asf?p=nifi.git;a=commit;h=
>> 421d5e61553e5fa160af9e0cc9fdc237af46906d
>> *
>> https://github.com/apache/nifi/commit/421d5e61553e5fa160af9e0cc9fdc2
>> 37af46906d
>>
>> Checksums of nifi-0.7.1-source-release.zip:
>> MD5: a15fc40ec887d82440f2de05ef71f810
>> SHA1: 1565f4e123478e91fd26022b939d9d2f6ea6a2cf
>>
>> Release artifacts are signed with the following key:
>> https://people.apache.org/keys/committer/jskora.asc
>>
>> KEYS file available here:
>> https://dist.apache.org/repos/dist/release/nifi/KEYS
>>
>> 41 issues were closed/resolved for this release:
>> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
>> projectId=12316020=12338025
>>
>> Release note highlights can be found here:
>> https://cwiki.apache.org/confluence/display/NIFI/
>> Release+Notes#ReleaseNotes-Version0.7.1
>>
>> The vote will be open for 72 hours.
>> Please download the release candidate and evaluate the necessary items
>> including checking hashes, signatures, build from source, and test.  The
>> please vote:
>>
>> [ ] +1 Release this package as nifi-0.7.1
>> [ ] +0 no opinion
>> [ ] -1 Do not release this package because because...
>>


Re: [VOTE] Release Apache NiFi 0.7.1 (RC1)

2016-10-18 Thread James Wing
+1, I was able to verify hashes, build with tests and checks, run NiFi and
do simple testing.  Thanks for putting this release together, Joe.


On Sun, Oct 16, 2016 at 8:32 PM, Joe Skora  wrote:

> Hello,
>
> I am pleased to be calling this vote for the source release of Apache NiFi
> nifi-0.7.1.
>
> The source zip, including signatures, digests, etc. can be found at:
> https://repository.apache.org/content/repositories/orgapachenifi-1091
>
> The Git tag is nifi-0.7.1-RC1
> The Git commit ID is 421d5e61553e5fa160af9e0cc9fdc237af46906d
> *
> https://git-wip-us.apache.org/repos/asf?p=nifi.git;a=commit;h=
> 421d5e61553e5fa160af9e0cc9fdc237af46906d
> *
> https://github.com/apache/nifi/commit/421d5e61553e5fa160af9e0cc9fdc2
> 37af46906d
>
> Checksums of nifi-0.7.1-source-release.zip:
> MD5: a15fc40ec887d82440f2de05ef71f810
> SHA1: 1565f4e123478e91fd26022b939d9d2f6ea6a2cf
>
> Release artifacts are signed with the following key:
> https://people.apache.org/keys/committer/jskora.asc
>
> KEYS file available here:
> https://dist.apache.org/repos/dist/release/nifi/KEYS
>
> 41 issues were closed/resolved for this release:
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?
> projectId=12316020=12338025
>
> Release note highlights can be found here:
> https://cwiki.apache.org/confluence/display/NIFI/
> Release+Notes#ReleaseNotes-Version0.7.1
>
> The vote will be open for 72 hours.
> Please download the release candidate and evaluate the necessary items
> including checking hashes, signatures, build from source, and test.  The
> please vote:
>
> [ ] +1 Release this package as nifi-0.7.1
> [ ] +0 no opinion
> [ ] -1 Do not release this package because because...
>


Re: NiFi 1.0.0 build failure in netbeans

2016-10-18 Thread sureshram
Hi

below is the error:


BUILD FAILURE

Total time: 16.588 s
Finished at: 2016-10-18T15:40:30+05:30
Final Memory: 39M/673M

Failed to execute goal
org.apache.maven.plugins:maven-compiler-plugin:3.2:compile (default-compile)
on project nifi-framework-cluster: Compilation failure -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute
goal org.apache.maven.plugins:maven-compiler-plugin:3.2:compile
(default-compile) on project nifi-framework-cluster: Compilation failure
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
at
org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
at
org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:862)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:286)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:197)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at
org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
at
org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
at
org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
at
org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.compiler.CompilationFailureException:
Compilation failure
at
org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute(AbstractCompilerMojo.java:913)
at
org.apache.maven.plugin.compiler.CompilerMojo.execute(CompilerMojo.java:129)
at
org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)
... 20 more


For more information about the errors and possible solutions, please read
the following articles:
[Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

~suresh




--
View this message in context: 
http://apache-nifi-developer-list.39713.n7.nabble.com/NiFi-1-0-0-build-failure-in-netbeans-tp13527p13645.html
Sent from the Apache NiFi Developer List mailing list archive at Nabble.com.