Re: [hibernate-dev] Java 9: progress on compatibility

2016-06-12 Thread Sanne Grinovero
On 11 June 2016 at 18:47, Sanne Grinovero wrote: > On 11 June 2016 at 18:25, Steve Ebersole wrote: >> The ORM failure seems to be a Gradle/JDK9 issue. Any idea about that? > > Not sure, that's a new one :) > It could be related to https://issues.gradle.org/browse/GRADLE-3287 ? > > Might be worth

Re: [hibernate-dev] Java 9: progress on compatibility

2016-06-12 Thread Sanne Grinovero
Some more progress by simply setting this environment variable: GRADLE_OPTS="-XaddExports:java.security.sasl/com.sun.security.sasl.digest=ALL-UNNAMED -XaddExports:java.security.sasl/com.sun.security.sasl=ALL-UNNAMED -XaddExports:jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED -XaddExports:jdk.u

Re: [hibernate-dev] Revert API change in org.hibernate.Query

2016-06-12 Thread Sanne Grinovero
On 7 June 2016 at 13:41, Steve Ebersole wrote: > If you send a PR I will include it. Thanks Steve, I finally got to it: - https://hibernate.atlassian.net/browse/HHH-10839 - https://github.com/hibernate/hibernate-orm/pull/1418 > > On Sun, Jun 5, 2016 at 11:00 AM Sanne Grinovero wrote: >> >>

Re: [hibernate-dev] Eclipse Che - quickstart for Hibernate contributions?

2016-06-12 Thread Max Rydahl Andersen
Hi Sanne, sorry for missing this mail - fell into my "read when on long flights"-folder. Those projects are setup by volunteers using Che and then shared. I've cc'ed you in a thread/mail to them on this subject - I'm also meeting with them this week so might get a more direct answer there. /m

Re: [hibernate-dev] Java 9: progress on compatibility

2016-06-12 Thread Gunnar Morling
Hey, I hit the same issue with the injection plug-in in HV. It was used for obtaining the version of HV at runtime. I worked around it by obtaining that from the package instead [1]: return SomeHvClass.class.getPackage().getImplementationVersion(); If that's all what the injection plug-in i