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