Re: Building Dataflow Worker

2020-06-15 Thread Kyle Weaver
> Looks like there is an issue with Gradle Errorprone's plugin. I saw the same error earlier today: https://jira.apache.org/jira/browse/BEAM-10263 I haven't done a full investigation yet, but it seems this broke the build for several (?) past Beam source releases. I'm not sure what Beam's policy

Re: Building Dataflow Worker

2020-06-15 Thread Talat Uyarer
Thank you Luke and Steve for your help. Looks like there is an issue with Gradle Errorprone's plugin. I had to modify BeamModulePlugin.groovy [1], Without modification when i tried to build it I got this error[2]. Should I create a patch for it ? Last question. We are using streaming engine. Whic

Re: Building Dataflow Worker

2020-06-15 Thread Steve Niemitz
I think you want the "legacy-worker" target instead: ./gradlew -Ppublishing -PnoSigning :runners:google-cloud-dataflow-java:worker:legacy-worker:shadowJar That's what I've always used at least. On Mon, Jun 15, 2020 at 4:57 PM Luke Cwik wrote: > I noticed that you are not using the gradle wrapp

Re: Building Dataflow Worker

2020-06-15 Thread Luke Cwik
I noticed that you are not using the gradle wrapper but your own installed version. Apache Beam 2.19 is using gradle 5.2.1, is the installed version compatible with that? Try ./gradlew :runners:google-cloud-dataflow-java:worker:shadowJar in a clean workspace. On Fri, Jun 12, 2020 at 4:30 PM Talat