Fixed build after 2.0 PR merge

The 2.0 PR merge missed a couple items that broke the build.
Specifically the maven plugin repository was not specified so the
snapshots for the Spring Boot Maven Plugin could not be found.  Also the
ordering of the parameters in the Hibernate generated SQL was different
so the JpaApplicationTests were failing.
This commit is contained in:
Michael Minella
2017-07-13 10:32:34 -05:00
parent 2c2712ada4
commit 8c08aa84f7
5 changed files with 114 additions and 7 deletions

View File

@@ -92,7 +92,7 @@ public class JpaApplicationTests {
@Test
public void testBatchJobApp() throws Exception {
final String INSERT_MESSAGE = "Hibernate: insert into task_run_output (id, output) values (null, ?)";
final String INSERT_MESSAGE = "Hibernate: insert into task_run_output (";
SpringApplication.run(JpaApplication.class, "--spring.datasource.url=" + DATASOURCE_URL,
"--spring.datasource.username=" + DATASOURCE_USER_NAME,
"--spring.datasource.driverClassName=" + DATASOURCE_DRIVER_CLASS_NAME,