Update versions and update code format

This commit is contained in:
Glenn Renfro
2023-09-25 12:22:51 -04:00
parent 6c5656e73f
commit 63ab5b1daf
95 changed files with 1224 additions and 1035 deletions

View File

@@ -58,4 +58,5 @@ public class JobConfiguration {
}, transactionManager).build())
.build();
}
}

View File

@@ -30,4 +30,5 @@ class BatchJobTestConfiguration {
public PostgreSQLContainer<?> postgresSQLContainer() {
return new PostgreSQLContainer(DockerImageName.parse("postgres:15.1"));
}
}

View File

@@ -21,9 +21,8 @@ import org.springframework.boot.SpringApplication;
public class TestBatchJobApp {
public static void main(String[] args) {
String[] myArgs = {"--spring.batch.jdbc.initialize-schema=always"};
SpringApplication.from(BatchJobApplication::main).
with(BatchJobTestConfiguration.class).
run(myArgs);
String[] myArgs = { "--spring.batch.jdbc.initialize-schema=always" };
SpringApplication.from(BatchJobApplication::main).with(BatchJobTestConfiguration.class).run(myArgs);
}
}