Skip to content

Commit

Permalink
HHH-12098 - prep 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sebersole committed Nov 16, 2017
1 parent a9f1caf commit c865377
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -58,7 +58,7 @@ allprojects {
}

ext {
hibernateTargetVersion = '5.2.13-SNAPSHOT'
hibernateTargetVersion = '5.3.0-SNAPSHOT'
expectedGradleVersion = '4.2'
baselineJavaVersion = '1.8'

Expand Down
Expand Up @@ -8,6 +8,7 @@

import java.util.Calendar;
import java.util.Date;
import java.util.List;
import javax.persistence.FlushModeType;
import javax.persistence.Parameter;
import javax.persistence.ParameterMode;
Expand All @@ -20,6 +21,16 @@
* @author Steve Ebersole
*/
public interface ProcedureCallImplementor<R> extends ProcedureCall, QueryImplementor<R> {
@Override
default List<R> getResultList() {
return list();
}

@Override
default R getSingleResult() {
return uniqueResult();
}

@Override
ProcedureCallImplementor<R> setHint(String hintName, Object value);

Expand Down
@@ -0,0 +1,12 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/

/**
* Test package for investigating JPA TCK failures - to reproduce them
* and, if caused by a Hibernate bug, make sure it does not regress later
*/
package org.hibernate.test.jpa.compliance;
2 changes: 1 addition & 1 deletion libraries.gradle
Expand Up @@ -52,7 +52,7 @@ ext {
byteBuddy: "net.bytebuddy:byte-buddy:${byteBuddyVersion}",

// javax
jpa: 'org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final',
jpa: 'javax.persistence:javax.persistence-api:2.2',
jta: 'org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.0.1.Final',
validation: 'javax.validation:validation-api:1.1.0.Final',
jacc: 'org.jboss.spec.javax.security.jacc:jboss-jacc-api_1.4_spec:1.0.2.Final',
Expand Down

0 comments on commit c865377

Please sign in to comment.