Re: Has anyone else observed this build break?

2014-11-15 Thread Sean Owen
FWIW I do not see this on master with mvn -DskipTests clean package. I'm on OS X 10.10 and I build with Java 8 by default. On Fri, Nov 14, 2014 at 8:17 PM, Patrick Wendell pwend...@gmail.com wrote: A recent patch broke clean builds for me, I am trying to see how widespread this issue is and

Re: Has anyone else observed this build break?

2014-11-15 Thread Ted Yu
Sorry for the late reply. I tested my patch on Mac with the following JDK: java version 1.7.0_60 Java(TM) SE Runtime Environment (build 1.7.0_60-b19) Java HotSpot(TM) 64-Bit Server VM (build 24.60-b09, mixed mode) Let me see if the problem can be solved upstream in HBase hbase-annotations

Re: Has anyone else observed this build break?

2014-11-15 Thread Ted Yu
I couldn't reproduce the problem using: java version 1.6.0_65 Java(TM) SE Runtime Environment (build 1.6.0_65-b14-462-11M4609) Java HotSpot(TM) 64-Bit Server VM (build 20.65-b04-462, mixed mode) Since hbase-annotations is a transitive dependency, I created the following pull request to exclude

Re: Has anyone else observed this build break?

2014-11-15 Thread Patrick Wendell
Sounds like this is pretty specific to my environment so not a big deal then. However, if we can safely exclude those packages it's worth doing. On Sat, Nov 15, 2014 at 7:27 AM, Ted Yu yuzhih...@gmail.com wrote: I couldn't reproduce the problem using: java version 1.6.0_65 Java(TM) SE Runtime

Has anyone else observed this build break?

2014-11-14 Thread Patrick Wendell
A recent patch broke clean builds for me, I am trying to see how widespread this issue is and whether we need to revert the patch. The error I've seen is this when building the examples project: spark-examples_2.10: Could not resolve dependencies for project

Re: Has anyone else observed this build break?

2014-11-14 Thread Patrick Wendell
A work around for this fix is identified here: http://dbknickerbocker.blogspot.com/2013/04/simple-fix-to-missing-toolsjar-in-jdk.html However, if this affects more users I'd prefer to just fix it properly in our build. On Fri, Nov 14, 2014 at 12:17 PM, Patrick Wendell pwend...@gmail.com wrote:

Re: Has anyone else observed this build break?

2014-11-14 Thread Hari Shreedharan
Seems like a comment on that page mentions a fix, which would add yet another profile though — specifically telling mvn that if it is an apple jdk, use the classes.jar as the tools.jar as well, since Apple-packaged JDK 6 bundled them together. Link:

Re: Has anyone else observed this build break?

2014-11-14 Thread Patrick Wendell
I think in this case we can probably just drop that dependency, so there is a simpler fix. But mostly I'm curious whether anyone else has observed this. On Fri, Nov 14, 2014 at 12:24 PM, Hari Shreedharan hshreedha...@cloudera.com wrote: Seems like a comment on that page mentions a fix, which