Re: [hibernate-dev] Compile error in hibernate-infinispan

2015-08-19 Thread Steve Ebersole
So the problem was that ultimately, compiled with Java 8, javac picks up the default remove() impl from Iterator. Pre-Java8 of course default methods are not available. I just added an impl of remove(). On Wed, Aug 19, 2015 at 12:27 PM Steve Ebersole wrote: > https://hibernate.atlassian.net/br

Re: [hibernate-dev] Compile error in hibernate-infinispan

2015-08-19 Thread Steve Ebersole
https://hibernate.atlassian.net/browse/HHH-10040 On Wed, Aug 19, 2015 at 9:36 AM Steve Ebersole wrote: > I few things... > > 1) Remember that JAVA6_HOME really needs to point to a JDK 7 HOME. > 2) We had a discussion on IRC wrt Infinispan 7 versus 8. Infinispan 7 is > supposed to require at le

Re: [hibernate-dev] Compile error in hibernate-infinispan

2015-08-19 Thread Steve Ebersole
I few things... 1) Remember that JAVA6_HOME really needs to point to a JDK 7 HOME. 2) We had a discussion on IRC wrt Infinispan 7 versus 8. Infinispan 7 is supposed to require at least Java 7; Infinispan 8 requires at least Java 8 3) hibernate-infinispan pulls in Infinispan 7 (yes, there is a CI

Re: [hibernate-dev] Compile error in hibernate-infinispan

2015-08-19 Thread Sanne Grinovero
On 19 August 2015 at 15:04, andrea boriero wrote: > I noticed the problem only when i run the build with AVA6_HOME set Ah, great that might explain it! CI isn't setting that (and I'm also not setting that locally). Still, the hibernate-infinispan module is not compatible with Java6, so could you

Re: [hibernate-dev] Compile error in hibernate-infinispan

2015-08-19 Thread andrea boriero
I noticed the problem only when i run the build with AVA6_HOME set On 19 August 2015 at 13:27, Sanne Grinovero wrote: > Hi Gail, > I tried to build it as well but I couldn't reproduce the problem; how > are you building it to trigger the error? Could you confirm which > commit id you were build

Re: [hibernate-dev] Compile error in hibernate-infinispan

2015-08-19 Thread Sanne Grinovero
Hi Gail, I tried to build it as well but I couldn't reproduce the problem; how are you building it to trigger the error? Could you confirm which commit id you were building? While I don't have compile issues, I do however see some test failures after your last commit, and CI seems to agree: - htt

[hibernate-dev] Compile error in hibernate-infinispan

2015-08-18 Thread Gail Badner
I just pulled from master and tried building but got: /home/gbadner/git/hibernate-orm-HHH-redo-again/hibernate-infinispan/src/main/java/org/hibernate/cache/infinispan/util/Caches.java:307: error: is not abstract and does not override abstract method remove() in Iterator