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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user