-
Notifications
You must be signed in to change notification settings - Fork 10
/
settings.gradle.kts
94 lines (88 loc) · 3.04 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
rootProject.name = "spring-batch-plus"
include("spring-batch-plus")
include("spring-batch-plus-kotlin")
include("spring-boot-autoconfigure-batch-plus")
include("spring-boot-autoconfigure-batch-plus-kotlin")
include("spring-boot-starter-batch-plus")
include("spring-boot-starter-batch-plus-kotlin")
include("spring-batch-plus-sample:spring-batch-plus-kotlin-dsl")
include("spring-batch-plus-sample:spring-batch-plus-single-class-reader-processor-writer")
include("spring-batch-plus-sample:spring-batch-plus-single-class-reader-processor-writer-kotlin")
include("spring-batch-plus-sample:spring-batch-plus-clear-run-id-incrementer")
include("spring-batch-plus-sample:spring-batch-plus-clear-run-id-incrementer-kotlin")
include("spring-batch-plus-sample:spring-batch-plus-delete-meta-data-job")
include("spring-batch-plus-sample:spring-batch-plus-delete-meta-data-job-kotlin")
dependencyResolutionManagement {
repositories {
mavenLocal()
mavenCentral()
maven("https://repo.spring.io/milestone/")
}
versionCatalogs {
create("libs") {
val springBootVersion = "3.2.0"
val springBatchVersion = "5.1.0"
library(
"spring-boot-autoconfigure",
"org.springframework.boot:spring-boot-autoconfigure:$springBootVersion",
)
library(
"spring-batch-core",
"org.springframework.batch:spring-batch-core:$springBatchVersion",
)
library(
"slf4j",
"org.slf4j:slf4j-api:1.7.36",
)
library(
"reactor-core",
"io.projectreactor:reactor-core:3.5.0",
)
library(
"findbugs-jsr305",
"com.google.code.findbugs:jsr305:3.0.2",
)
// test only
library(
"junit",
"org.junit.jupiter:junit-jupiter:5.+",
)
library(
"assertj",
"org.assertj:assertj-core:3.+",
)
library(
"mockito",
"org.mockito:mockito-core:5.+",
)
library(
"mockito-kotlin",
"org.mockito.kotlin:mockito-kotlin:5.+",
)
library(
"mockk",
"io.mockk:mockk:1.+",
)
library(
"spring-boot-test",
"org.springframework.boot:spring-boot-test:$springBootVersion",
)
library(
"spring-batch-test",
"org.springframework.batch:spring-batch-test:$springBatchVersion",
)
library(
"spring-jdbc",
"org.springframework:spring-jdbc:5.3.21",
)
library(
"h2",
"com.h2database:h2:2.1.214",
)
library(
"log4j",
"org.apache.logging.log4j:log4j-slf4j-impl:2.17.2",
)
}
}
}