forked from line/kotlin-jdsl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
libs.example.versions.toml
49 lines (38 loc) · 2.55 KB
/
libs.example.versions.toml
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
[versions]
spring-boot3 = "3.2.1"
spring-boot2 = "2.7.18"
[libraries]
# log
slf4j = { module = "org.slf4j:slf4j-api", version = "2.0.11" }
logback = { module = "ch.qos.logback:logback-classic", version = "1.4.14" }
# jpa
javax-persistence-api = { module = "javax.persistence:javax.persistence-api", version = "2.2" }
jakarta-persistence-api = { module = "jakarta.persistence:jakarta.persistence-api", version = "3.1.0" }
# spring boot
spring-boot3-jpa = { module = "org.springframework.boot:spring-boot-starter-data-jpa", version.ref = "spring-boot3" }
spring-boot3-batch = { module = "org.springframework.boot:spring-boot-starter-batch", version.ref = "spring-boot3" }
spring-boot3-p6spy = { module = "com.github.gavlyukovskiy:p6spy-spring-boot-starter", version = "1.9.1" }
spring-boot3-test = { module = "org.springframework.boot:spring-boot-starter-test", version.ref = "spring-boot3" }
spring-boot2-jpa = { module = "org.springframework.boot:spring-boot-starter-data-jpa", version.ref = "spring-boot2" }
spring-boot2-batch = { module = "org.springframework.boot:spring-boot-starter-batch", version.ref = "spring-boot2" }
spring-boot2-p6spy = { module = "com.github.gavlyukovskiy:p6spy-spring-boot-starter", version = "1.8.1" }
spring-boot2-test = { module = "org.springframework.boot:spring-boot-starter-test", version.ref = "spring-boot2" }
# spring
spring-batch5-test = { module = "org.springframework.batch:spring-batch-test", version = "5.1.0" }
spring-batch4-test = { module = "org.springframework.batch:spring-batch-test", version = "4.3.10" }
# hibernate
hibernate5-core = { module = "org.hibernate:hibernate-core", version = "5.6.15.Final" }
hibernate6-core = { module = "org.hibernate:hibernate-core", version = "6.4.1.Final" }
# hibernate-reactive
hibernate-reactive1-core = { module = "org.hibernate.reactive:hibernate-reactive-core", version = "1.1.9.Final" }
hibernate-reactive2-core = { module = "org.hibernate.reactive:hibernate-reactive-core", version = "2.2.1.Final" }
# eclipse-link
eclipselink2 = { module = "org.eclipse.persistence:org.eclipse.persistence.jpa", version = "2.7.14" }
eclipselink4 = { module = "org.eclipse.persistence:org.eclipse.persistence.jpa", version = "4.0.2" }
# vertx
vertx-jdbc-client = { module = "io.vertx:vertx-jdbc-client", version = "4.5.1" }
agroal-pool = { module = "io.agroal:agroal-pool", version = "2.2" }
h2 = { module = "com.h2database:h2", version = "2.2.224" }
[plugins]
spring-boot3 = { id = "org.springframework.boot", version.ref = "spring-boot3" }
spring-boot2 = { id = "org.springframework.boot", version.ref = "spring-boot2" }