Skip to content

Commit 8f6431f

Browse files
committed
HBX-2949: hbm2ddl stopped working correctly after update to ORM 7.0.0.Beta3
Signed-off-by: Koen Aers <[email protected]>
1 parent 7b797ae commit 8f6431f

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,11 @@
199199
<groupId>org.hibernate.orm</groupId>
200200
<artifactId>hibernate-ant</artifactId>
201201
<version>${hibernate-orm.version}</version>
202+
</dependency>
203+
<dependency>
204+
<groupId>org.hibernate.orm</groupId>
205+
<artifactId>hibernate-scan-jandex</artifactId>
206+
<version>${hibernate-orm.version}</version>
202207
</dependency>
203208
<dependency>
204209
<groupId>org.hibernate.common</groupId>

test/common/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@
3535
<dependency>
3636
<groupId>org.hibernate.tool</groupId>
3737
<artifactId>hibernate-tools-orm</artifactId>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.hibernate.orm</groupId>
41+
<artifactId>hibernate-scan-jandex</artifactId>
3842
</dependency>
3943
<dependency>
4044
<groupId>org.hibernate.tool</groupId>

test/common/src/main/java/org/hibernate/tool/ant/EJB3Configuration/TestCase.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ public void tearDown() {
5555
JdbcUtil.dropDatabase(this);
5656
}
5757

58-
// TODO HBX-2949 - Investigate failure and reenable following test if possible
59-
@Disabled
6058
@Test
6159
public void testEJB3ConfigurationFailureExpected() {
6260

test/common/src/main/java/org/hibernate/tool/ant/JPAPUnit/TestCase.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ public void tearDown() {
5555
JdbcUtil.dropDatabase(this);
5656
}
5757

58-
// TODO HBX-2949 - Investigate failure and reenable following test if possible
59-
@Disabled
6058
@Test
6159
public void testJPAPUnit() {
6260

0 commit comments

Comments
 (0)