HHH-15297 Invalid Automatic-Module-Name org.hibernate.orm.community-dialects
This commit is contained in:
parent
9a26f2503b
commit
30d896a19a
|
@ -44,7 +44,7 @@ apply plugin: 'org.jetbrains.gradle.plugin.idea-ext'
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
java9ModuleNameBase = project.name.startsWith( 'hibernate-' ) ? name.drop( 'hibernate-'.length() ): name
|
java9ModuleNameBase = project.name.startsWith( 'hibernate-' ) ? name.drop( 'hibernate-'.length() ): name
|
||||||
java9ModuleName = "org.hibernate.orm.$project.java9ModuleNameBase"
|
java9ModuleName = "org.hibernate.orm.$project.java9ModuleNameBase".replace('-','.')
|
||||||
forbiddenAPITargetJDKCompatibility = '11'
|
forbiddenAPITargetJDKCompatibility = '11'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -360,15 +360,6 @@ test {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
// Artifacts (jar, sources, javadoc)
|
|
||||||
|
|
||||||
ext {
|
|
||||||
java9ModuleNameBase = project.name.startsWith( 'hibernate-' ) ? name.drop( 'hibernate-'.length() ): name
|
|
||||||
java9ModuleName = "org.hibernate.orm.$project.java9ModuleNameBase"
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
// Jar
|
// Jar
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue