diff --git a/README.md b/README.md index 6498c184..80db1924 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ We've tested following versions only. Other versions may not work. | Batch Plus (Latest) | Batch | Boot Starter | Kotlin | Java | Status | Samples | |---------------------|-------|---------------|---------------|---------------|------------|--------------------------------------------------------------------------------------------| -| 1.2.x (1.2.0) | 5.2.x | 3.4.x ~ 3.4.x | 1.6 or higher | 17 or higher | Maintained | [Samples](https://github.com/naver/spring-batch-plus/tree/main/spring-batch-plus-sample) | +| 1.2.x (1.2.0) | 5.2.x | 3.4.x ~ 3.5.x | 1.6 or higher | 17 or higher | Maintained | [Samples](https://github.com/naver/spring-batch-plus/tree/main/spring-batch-plus-sample) | | 1.1.x (1.1.0) | 5.1.x | 3.2.x ~ 3.3.x | 1.5 or higher | 17 or higher | Maintained | [Samples](https://github.com/naver/spring-batch-plus/tree/1.1.x/spring-batch-plus-sample) | | 1.0.x (1.0.1) | 5.0.x | 3.0.x ~ 3.1.x | 1.5 or higher | 17 or higher | Maintained | [Samples](https://github.com/naver/spring-batch-plus/tree/1.0.x/spring-batch-plus-sample) | | 0.3.x (0.3.1) | 4.3.x | 2.4.x ~ 2.7.x | 1.5 or higher | 1.8 or higher | Maintained | [Samples](https://github.com/naver/spring-batch-plus/tree/0.3.x/spring-batch-plus-sample) | diff --git a/spring-batch-plus-sample/clear-run-id-incrementer-kotlin-sample/build.gradle.kts b/spring-batch-plus-sample/clear-run-id-incrementer-kotlin-sample/build.gradle.kts index 0d8273b8..db01bfaa 100644 --- a/spring-batch-plus-sample/clear-run-id-incrementer-kotlin-sample/build.gradle.kts +++ b/spring-batch-plus-sample/clear-run-id-incrementer-kotlin-sample/build.gradle.kts @@ -33,7 +33,7 @@ tasks.named("test") { dependencyManagement { imports { - mavenBom("org.springframework.boot:spring-boot-dependencies:3.4.0") + mavenBom("org.springframework.boot:spring-boot-dependencies:3.5.0") } } @@ -43,4 +43,5 @@ dependencies { runtimeOnly("com.h2database:h2:2.1.214") testImplementation("org.springframework.boot:spring-boot-starter-test") + testRuntimeOnly("org.junit.platform:junit-platform-launcher") } diff --git a/spring-batch-plus-sample/clear-run-id-incrementer-sample/build.gradle.kts b/spring-batch-plus-sample/clear-run-id-incrementer-sample/build.gradle.kts index dc48d88a..495c7926 100644 --- a/spring-batch-plus-sample/clear-run-id-incrementer-sample/build.gradle.kts +++ b/spring-batch-plus-sample/clear-run-id-incrementer-sample/build.gradle.kts @@ -27,7 +27,7 @@ tasks.named("test") { dependencyManagement { imports { - mavenBom("org.springframework.boot:spring-boot-dependencies:3.4.0") + mavenBom("org.springframework.boot:spring-boot-dependencies:3.5.0") } } @@ -37,4 +37,5 @@ dependencies { runtimeOnly("com.h2database:h2:2.1.214") testImplementation("org.springframework.boot:spring-boot-starter-test") + testRuntimeOnly("org.junit.platform:junit-platform-launcher") } diff --git a/spring-batch-plus-sample/delete-meta-data-job-kotlin-sample/build.gradle.kts b/spring-batch-plus-sample/delete-meta-data-job-kotlin-sample/build.gradle.kts index 0d8273b8..db01bfaa 100644 --- a/spring-batch-plus-sample/delete-meta-data-job-kotlin-sample/build.gradle.kts +++ b/spring-batch-plus-sample/delete-meta-data-job-kotlin-sample/build.gradle.kts @@ -33,7 +33,7 @@ tasks.named("test") { dependencyManagement { imports { - mavenBom("org.springframework.boot:spring-boot-dependencies:3.4.0") + mavenBom("org.springframework.boot:spring-boot-dependencies:3.5.0") } } @@ -43,4 +43,5 @@ dependencies { runtimeOnly("com.h2database:h2:2.1.214") testImplementation("org.springframework.boot:spring-boot-starter-test") + testRuntimeOnly("org.junit.platform:junit-platform-launcher") } diff --git a/spring-batch-plus-sample/delete-meta-data-job-sample/build.gradle.kts b/spring-batch-plus-sample/delete-meta-data-job-sample/build.gradle.kts index dc48d88a..495c7926 100644 --- a/spring-batch-plus-sample/delete-meta-data-job-sample/build.gradle.kts +++ b/spring-batch-plus-sample/delete-meta-data-job-sample/build.gradle.kts @@ -27,7 +27,7 @@ tasks.named("test") { dependencyManagement { imports { - mavenBom("org.springframework.boot:spring-boot-dependencies:3.4.0") + mavenBom("org.springframework.boot:spring-boot-dependencies:3.5.0") } } @@ -37,4 +37,5 @@ dependencies { runtimeOnly("com.h2database:h2:2.1.214") testImplementation("org.springframework.boot:spring-boot-starter-test") + testRuntimeOnly("org.junit.platform:junit-platform-launcher") } diff --git a/spring-batch-plus-sample/kotlin-dsl-sample/build.gradle.kts b/spring-batch-plus-sample/kotlin-dsl-sample/build.gradle.kts index 0d8273b8..db01bfaa 100644 --- a/spring-batch-plus-sample/kotlin-dsl-sample/build.gradle.kts +++ b/spring-batch-plus-sample/kotlin-dsl-sample/build.gradle.kts @@ -33,7 +33,7 @@ tasks.named("test") { dependencyManagement { imports { - mavenBom("org.springframework.boot:spring-boot-dependencies:3.4.0") + mavenBom("org.springframework.boot:spring-boot-dependencies:3.5.0") } } @@ -43,4 +43,5 @@ dependencies { runtimeOnly("com.h2database:h2:2.1.214") testImplementation("org.springframework.boot:spring-boot-starter-test") + testRuntimeOnly("org.junit.platform:junit-platform-launcher") } diff --git a/spring-batch-plus-sample/single-class-reader-processor-writer-kotlin-sample/build.gradle.kts b/spring-batch-plus-sample/single-class-reader-processor-writer-kotlin-sample/build.gradle.kts index 8a2c78d2..3b3c9145 100644 --- a/spring-batch-plus-sample/single-class-reader-processor-writer-kotlin-sample/build.gradle.kts +++ b/spring-batch-plus-sample/single-class-reader-processor-writer-kotlin-sample/build.gradle.kts @@ -33,7 +33,7 @@ tasks.named("test") { dependencyManagement { imports { - mavenBom("org.springframework.boot:spring-boot-dependencies:3.4.0") + mavenBom("org.springframework.boot:spring-boot-dependencies:3.5.0") } } @@ -44,4 +44,5 @@ dependencies { runtimeOnly("com.h2database:h2:2.1.214") testImplementation("org.springframework.boot:spring-boot-starter-test") + testRuntimeOnly("org.junit.platform:junit-platform-launcher") } diff --git a/spring-batch-plus-sample/single-class-reader-processor-writer-sample/build.gradle.kts b/spring-batch-plus-sample/single-class-reader-processor-writer-sample/build.gradle.kts index 68a17fcb..8a80ce28 100644 --- a/spring-batch-plus-sample/single-class-reader-processor-writer-sample/build.gradle.kts +++ b/spring-batch-plus-sample/single-class-reader-processor-writer-sample/build.gradle.kts @@ -27,7 +27,7 @@ tasks.named("test") { dependencyManagement { imports { - mavenBom("org.springframework.boot:spring-boot-dependencies:3.4.0") + mavenBom("org.springframework.boot:spring-boot-dependencies:3.5.0") } } @@ -38,4 +38,5 @@ dependencies { runtimeOnly("com.h2database:h2:2.1.214") testImplementation("org.springframework.boot:spring-boot-starter-test") + testRuntimeOnly("org.junit.platform:junit-platform-launcher") }