|
1 | 1 | [versions] |
2 | | -lombok = "1.18.34" |
3 | | -junit = "5.10.3" |
4 | | -slf4j = "2.0.13" |
5 | | -logback = "1.5.16" |
6 | | -testcontainers = "1.20.4" |
| 2 | +asm = "9.7" |
7 | 3 | hamcrest = "2.2" |
| 4 | +jackson = "2.18.1" |
| 5 | +jetbrains-annotations = "24.1.0" |
8 | 6 | jmh = "1.37" |
9 | | -asm = "9.7" |
| 7 | +junit = "5.10.3" |
| 8 | +logback = "1.5.16" |
| 9 | +lombok = "1.18.34" |
10 | 10 | pcollections = "4.0.2" |
11 | | -jetbrains-annotations = "24.1.0" |
12 | | -jackson = "2.18.1" |
| 11 | +slf4j = "2.0.13" |
13 | 12 | spring-boot = "3.4.3" |
| 13 | +testcontainers = "1.20.4" |
14 | 14 |
|
15 | 15 | [libraries] |
16 | | -lombok = { module = "org.projectlombok:lombok", version.ref = "lombok" } |
17 | | - |
18 | | -junit-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" } |
19 | | -junit-params = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "junit" } |
20 | | -junit-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" } |
21 | | - |
22 | | -testcontainers = { module = "org.testcontainers:testcontainers", version.ref = "testcontainers" } |
23 | | -testcontainers-junit = { module = "org.testcontainers:junit-jupiter", version.ref = "testcontainers" } |
24 | | -testcontainers-toxiproxy = { module = "org.testcontainers:toxiproxy", version.ref = "testcontainers" } |
25 | | - |
26 | | -hamcrest = { module = "org.hamcrest:hamcrest", version.ref = "hamcrest" } |
27 | | -hamcrest-library = { module = "org.hamcrest:hamcrest-library", version.ref = "hamcrest" } |
28 | | - |
29 | | -slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" } |
30 | | -logback-classic = { module = "ch.qos.logback:logback-classic", version.ref = "logback" } |
31 | | - |
32 | | -jmh-core = { module = "org.openjdk.jmh:jmh-core", version.ref = "jmh" } |
33 | | -jmh-apt = { module = "org.openjdk.jmh:jmh-generator-annprocess", version.ref = "jmh" } |
34 | | - |
35 | 16 | asm = { module = "org.ow2.asm:asm", version.ref = "asm" } |
36 | 17 | asm-util = { module = "org.ow2.asm:asm-util", version.ref = "asm" } |
37 | | - |
38 | | -pcollections = { module = "org.pcollections:pcollections", version.ref="pcollections" } |
39 | | - |
40 | | -jetbrains-annotations = { module = "org.jetbrains:annotations", version.ref="jetbrains-annotations" } |
41 | | - |
42 | | -jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref="jackson" } |
| 18 | +hamcrest = { module = "org.hamcrest:hamcrest", version.ref = "hamcrest" } |
| 19 | +hamcrest-library = { module = "org.hamcrest:hamcrest-library", version.ref = "hamcrest" } |
| 20 | +hikari = { module = "com.zaxxer:HikariCP", version = "6.2.1" } |
43 | 21 | jackson-annotations = { module = "com.fasterxml.jackson.core:jackson-annotations", version.ref = "jackson" } |
44 | | - |
| 22 | +jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref="jackson" } |
| 23 | +jetbrains-annotations = { module = "org.jetbrains:annotations", version.ref="jetbrains-annotations" } |
| 24 | +jmh-apt = { module = "org.openjdk.jmh:jmh-generator-annprocess", version.ref = "jmh" } |
| 25 | +jmh-core = { module = "org.openjdk.jmh:jmh-core", version.ref = "jmh" } |
| 26 | +jooq = { module = "org.jooq:jooq", version = "3.19.18" } |
| 27 | +junit-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" } |
| 28 | +junit-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" } |
| 29 | +junit-params = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "junit" } |
| 30 | +logback-classic = { module = "ch.qos.logback:logback-classic", version.ref = "logback" } |
| 31 | +lombok = { module = "org.projectlombok:lombok", version.ref = "lombok" } |
45 | 32 | mongodb = { module = "org.mongodb:mongodb-driver-sync", version="5.1.2" } |
46 | | - |
47 | | -spotbugs-annotations = { module = "com.github.spotbugs:spotbugs-annotations", version="4.8.6" } |
48 | | - |
| 33 | +mysql = { module = "com.mysql:mysql-connector-j", version = "9.2.0" } |
49 | 34 | opentelemetry = { module="io.opentelemetry:opentelemetry-sdk", version="1.48.0" } |
50 | | - |
51 | | -spring-boot-starter-web = { module="org.springframework.boot:spring-boot-starter-web", version.ref="spring-boot" } |
52 | | -spring-boot-annotation-processor = { module="org.springframework.boot:spring-boot-configuration-processor", version.ref="spring-boot" } |
53 | | - |
54 | | -jooq = { module = "org.jooq:jooq", version = "3.19.18" } |
55 | | -hikari = { module = "com.zaxxer:HikariCP", version = "6.2.1" } |
56 | | -testcontainers-postgresql = { module = "org.testcontainers:postgresql", version.ref="testcontainers" } |
| 35 | +pcollections = { module = "org.pcollections:pcollections", version.ref="pcollections" } |
57 | 36 | postgresql = { module = "org.postgresql:postgresql", version = "42.7.5" } |
58 | | -testcontainers-mysql = { module = "org.testcontainers:mysql", version.ref="testcontainers" } |
59 | | -mysql = { module = "com.mysql:mysql-connector-j", version = "9.2.0" } |
| 37 | +slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" } |
| 38 | +spotbugs-annotations = { module = "com.github.spotbugs:spotbugs-annotations", version="4.8.6" } |
| 39 | +spring-boot-annotation-processor = { module="org.springframework.boot:spring-boot-configuration-processor", version.ref="spring-boot" } |
| 40 | +spring-boot-starter-web = { module="org.springframework.boot:spring-boot-starter-web", version.ref="spring-boot" } |
60 | 41 | sqlite = { module = "org.xerial:sqlite-jdbc", version = "3.49.1.0" } |
| 42 | +testcontainers = { module = "org.testcontainers:testcontainers", version.ref = "testcontainers" } |
| 43 | +testcontainers-junit = { module = "org.testcontainers:junit-jupiter", version.ref = "testcontainers" } |
| 44 | +testcontainers-mysql = { module = "org.testcontainers:mysql", version.ref="testcontainers" } |
| 45 | +testcontainers-postgresql = { module = "org.testcontainers:postgresql", version.ref="testcontainers" } |
| 46 | +testcontainers-toxiproxy = { module = "org.testcontainers:toxiproxy", version.ref = "testcontainers" } |
61 | 47 |
|
62 | 48 | [plugins] |
63 | 49 | nexus = { id = "io.github.gradle-nexus.publish-plugin", version="2.0.0" } |
|
0 commit comments