Travis
This commit is contained in:
parent
7acacda758
commit
6907009cab
|
@ -301,6 +301,7 @@
|
|||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<runOrder>alphabetical</runOrder>
|
||||
<reuseForks>false</reuseForks>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
|
|
|
@ -10,11 +10,11 @@ public class BaseJpaTest {
|
|||
|
||||
@AfterClass
|
||||
public static void afterClassShutdownDerby() throws SQLException {
|
||||
try {
|
||||
DriverManager.getConnection("jdbc:derby:memory:myUnitTestDB;drop=true");
|
||||
} catch (SQLNonTransientConnectionException e) {
|
||||
// expected.. for some reason....
|
||||
}
|
||||
// try {
|
||||
// DriverManager.getConnection("jdbc:derby:memory:myUnitTestDB;drop=true");
|
||||
// } catch (SQLNonTransientConnectionException e) {
|
||||
// // expected.. for some reason....
|
||||
// }
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue