|
| 1 | +[versions] |
| 2 | +springboot = "3.0.6" |
| 3 | +jjwt = "0.9.1" |
| 4 | +jaxb = "2.4.0-b180830.0359" |
| 5 | +mysql = "8.0.30" |
| 6 | +gson = "2.10" |
| 7 | +lombok = "1.18.30" # put actual version you use |
| 8 | +mapstruct = "1.5.3.Final" |
| 9 | +springdoc = "1.6.14" |
| 10 | +jedis = "3.9.0" |
| 11 | +jackson = "2.15.0" |
| 12 | +micrometer = "1.11.0" # adjust if needed |
| 13 | +testcontainers = "1.17.6" |
| 14 | + |
| 15 | +[libraries] |
| 16 | +spring-boot-starter-web = { module = "org.springframework.boot:spring-boot-starter-web" } |
| 17 | +spring-boot-starter-security = { module = "org.springframework.boot:spring-boot-starter-security" } |
| 18 | +spring-boot-starter-data-jpa = { module = "org.springframework.boot:spring-boot-starter-data-jpa" } |
| 19 | +spring-boot-starter-actuator = { module = "org.springframework.boot:spring-boot-starter-actuator", version.ref = "springboot" } |
| 20 | +spring-boot-starter-data-redis = { module = "org.springframework.boot:spring-boot-starter-data-redis", version.ref = "springboot" } |
| 21 | +spring-boot-starter-cache = { module = "org.springframework.boot:spring-boot-starter-cache", version = "2.4.3" } |
| 22 | +spring-boot-starter-test = { module = "org.springframework.boot:spring-boot-starter-test" } |
| 23 | + |
| 24 | +jjwt = { module = "io.jsonwebtoken:jjwt", version.ref = "jjwt" } |
| 25 | +jaxb-api = { module = "javax.xml.bind:jaxb-api", version.ref = "jaxb" } |
| 26 | +mysql-connector = { module = "mysql:mysql-connector-java", version.ref = "mysql" } |
| 27 | +gson = { module = "com.google.code.gson:gson", version.ref = "gson" } |
| 28 | +lombok = { module = "org.projectlombok:lombok", version.ref = "lombok" } |
| 29 | + |
| 30 | +mapstruct = { module = "org.mapstruct:mapstruct", version.ref = "mapstruct" } |
| 31 | +mapstruct-processor = { module = "org.mapstruct:mapstruct-processor", version.ref = "mapstruct" } |
| 32 | + |
| 33 | +springdoc-openapi-ui = { module = "org.springdoc:springdoc-openapi-ui", version.ref = "springdoc" } |
| 34 | +jedis = { module = "redis.clients:jedis", version.ref = "jedis" } |
| 35 | +jackson-jsr310 = { module = "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", version.ref = "jackson" } |
| 36 | + |
| 37 | +micrometer-prometheus = { module = "io.micrometer:micrometer-registry-prometheus", version.ref = "micrometer" } |
| 38 | + |
| 39 | +testcontainers = { module = "org.testcontainers:testcontainers", version.ref = "testcontainers" } |
| 40 | +testcontainers-mysql = { module = "org.testcontainers:mysql", version.ref = "testcontainers" } |
0 commit comments