Re: Question about Hadoop profiles in POM

2015-02-20 Thread Dániel Bali
Thanks for the answers! I didn't set the scope to provided, but now I will make that change. Regards, Daniel 2015-02-20 14:27 GMT+01:00 Aljoscha Krettek : > Did you set the scope to provided? As in: > > >com.google.guava >guava >${guava.version} >provided > > > Then this shoul

Re: Question about Hadoop profiles in POM

2015-02-20 Thread Aljoscha Krettek
Did you set the scope to provided? As in: com.google.guava guava ${guava.version} provided Then this should be a good solution, yes. On Fri, Feb 20, 2015 at 1:05 PM, Dániel Bali wrote: > Hi! > > I was working on FLINK-1522 > and F

Re: Question about Hadoop profiles in POM

2015-02-20 Thread Robert Metzger
Hey Daniel, welcome to the shady world of shading maven dependencies (and Hadoop not shading its super old guava version ;) ). I'll have a look at your branch. I think Aljoscha added the guava dependency for the test scope of the hadoop1 profile. He made this change when he moved the HadoopInputF

Question about Hadoop profiles in POM

2015-02-20 Thread Dániel Bali
Hi! I was working on FLINK-1522 and FLINK-1576 and started converting Gelly library examples to work with file inputs. I added a test for LabelPropagationExample and got failures in Travis when ha