HHH-12946 Target JDK11 instead of JDK10 in terms of JDK API compatibility

This commit is contained in:
Yoann Rodière 2018-10-15 11:56:27 +02:00 committed by Guillaume Smet
parent 0924138b75
commit 68e20f4f8b
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ apply plugin: 'project-report'
ext {
java9ModuleNameBase = project.name.startsWith( 'hibernate-' ) ? name.drop( 'hibernate-'.length() ): name
java9ModuleName = "org.hibernate.orm.$project.java9ModuleNameBase"
forbiddenAPITargetJDKCompatibility = '10'
forbiddenAPITargetJDKCompatibility = '11'
}