hibernate5-ddl-maven-plugin icon indicating copy to clipboard operation
hibernate5-ddl-maven-plugin copied to clipboard

Maven plugin for creating SQL DDL files for applications which use Hibernate as JPA provider

Results 12 hibernate5-ddl-maven-plugin issues
Sort by recently updated
recently updated
newest added

Bumps [hibernate-core](https://github.com/hibernate/hibernate-orm) from 5.2.18.Final to 5.3.20.Final. Changelog Sourced from hibernate-core's changelog. Changes in 5.3.20.Final (November 16th, 2020) https://hibernate.atlassian.net/projects/HHH/versions/31894/tab/release-report-all-issues ** Bug * [HHH-14257] - An Entity A with a map collection...

dependencies

Bumps [hibernate-core](https://github.com/hibernate/hibernate-orm) from 5.1.17.Final to 5.3.20.Final. Release notes Sourced from hibernate-core's releases. Hibernate ORM 5.2.0 5.2.0 includes many improvements and bug-fixes. For a complete list of changes, see https://hibernate.atlassian.net/projects/HHH/versions/23150/tab/release-report-done. Many...

dependencies

Bumps [hibernate-core](https://github.com/hibernate/hibernate-orm) from 5.0.12.Final to 5.3.20.Final. Release notes Sourced from hibernate-core's releases. Hibernate ORM 5.2.0 5.2.0 includes many improvements and bug-fixes. For a complete list of changes, see https://hibernate.atlassian.net/projects/HHH/versions/23150/tab/release-report-done. Many...

dependencies

Bumps [hibernate-core](https://github.com/hibernate/hibernate-orm) from 5.3.23.Final to 5.4.24.Final. Changelog Sourced from hibernate-core's changelog. Changes in 5.4.24.Final (November 17, 2020) https://hibernate.atlassian.net/projects/HHH/versions/31892 ** Bug * [HHH-14333] - Pessimistic Lock causes FOR UPDATE on outer...

dependencies

Please consider supporting Jakarta EE Persistence with the new namespace for entities `jakarta.persistence.Entity`, because at the moment only entities of the old namespace `javax.persistence.Entity` are supported.

I've noticed that "The plugin requires Java 8 or newer" while actually Java 9 is required. This is (at least) due to the usage of `ClassLoader #getDefinedPackages()` in [EntityFinder](https://github.com/jpdigital/hibernate5-ddl-maven-plugin/blob/master/hibernate5-ddl-maven-plugin-core/src/main/java/de/jpdigital/maven/plugins/hibernate5ddl/EntityFinder.java). My...

If we have a customDialect being used it's not possible to omit the Dialect from the name file. We keep having it added to the file name

The plugin fails if we had the a custom dialect but we don't had the dialect parameter. A NPE is thrown

I am simply using the plugin as: ```xml de.jpdigital hibernate54-ddl-maven-plugin 2.3.0 POSTGRESQL9 com.corp.proj.pack.data.entity create_ gen-ddl process-classes ``` and I am having the entity defined as: ```java @MappedSuperclass public abstract class...