Skip to content

Commit

Permalink
FORGE-1961: H2 as the default DB for JBossAS/EAP and Wildfly
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Jul 30, 2014
1 parent b660f94 commit 22e7821
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class JBossAS7Container extends JavaEEDefaultContainer
@Override
public DatabaseType getDefaultDatabaseType()
{
return DatabaseType.HSQLDB;
return DatabaseType.H2;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class JBossEAP6Container extends JavaEEDefaultContainer
@Override
public DatabaseType getDefaultDatabaseType()
{
return DatabaseType.HSQLDB;
return DatabaseType.H2;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class WildflyContainer extends JavaEEDefaultContainer
@Override
public DatabaseType getDefaultDatabaseType()
{
return DatabaseType.HSQLDB;
return DatabaseType.H2;
}

@Override
Expand Down

0 comments on commit 22e7821

Please sign in to comment.