Skip to content

Commit

Permalink
HBX-2557: Create 'org.hibernate.tool.hbm2x.*' exporter classes in the…
Browse files Browse the repository at this point in the history
… JBT bridge

Signed-off-by: Koen Aers <[email protected]>
  • Loading branch information
koentsje committed Jul 25, 2023
1 parent c1b1cac commit 0a6cd85
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package org.hibernate.tool.hbm2x;

import org.hibernate.tool.internal.export.cfg.CfgExporter;

public class HibernateConfigurationExporter extends CfgExporter {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package org.hibernate.tool.hbm2x;

import org.hibernate.tool.internal.export.hbm.HbmExporter;

public class HibernateMappingExporter extends HbmExporter {

}
7 changes: 7 additions & 0 deletions jbt/src/main/java/org/hibernate/tool/hbm2x/POJOExporter.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package org.hibernate.tool.hbm2x;

import org.hibernate.tool.internal.export.java.JavaExporter;

public class POJOExporter extends JavaExporter {

}

0 comments on commit 0a6cd85

Please sign in to comment.