Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,11 @@
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-ant</artifactId>
<version>${hibernate-orm.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-scan-jandex</artifactId>
<version>${hibernate-orm.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate.common</groupId>
Expand Down
4 changes: 4 additions & 0 deletions test/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
<dependency>
<groupId>org.hibernate.tool</groupId>
<artifactId>hibernate-tools-orm</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-scan-jandex</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate.tool</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ public void tearDown() {
JdbcUtil.dropDatabase(this);
}

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ public void tearDown() {
JdbcUtil.dropDatabase(this);
}

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

Expand Down