Updated dependencies and tests

README update
This commit is contained in:
Glenn Renfro
2019-06-06 09:59:53 -04:00
parent 9a0ac2f166
commit 2e8ae1f43c
16 changed files with 30 additions and 30 deletions

View File

@@ -27,7 +27,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.3.RELEASE</version>
<version>2.1.5.RELEASE</version>
<relativePath />
</parent>

View File

@@ -77,7 +77,7 @@ public class JpaApplicationTests {
dataSource.setPassword(DATASOURCE_USER_PASSWORD);
this.dataSource = dataSource;
try {
this.server = Server.createTcpServer("-tcp", "-tcpAllowOthers", "-tcpPort", String.valueOf(randomPort))
this.server = Server.createTcpServer("-ifNotExists", "-tcp", "-tcpAllowOthers", "-tcpPort", String.valueOf(randomPort))
.start();
}
catch (SQLException e) {