|
2 | 2 | jsonwebtoken = "0.11.5" |
3 | 3 | retrofit2 = "2.9.0" |
4 | 4 | jjwt = "0.11.5" |
| 5 | +jackson = "2.13.3" |
| 6 | +assertj = "3.22.0" |
| 7 | +junit = "5.8.2" |
| 8 | +slf4j = "1.7.36" |
| 9 | +json-path = "2.7.0" |
| 10 | +mockito = "4.5.1" |
| 11 | +okhttp3 = "4.9.3" |
5 | 12 |
|
6 | 13 | [libraries] |
7 | 14 | retrofit2-retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit2" } |
8 | 15 | retrofit2-converter-jackson = { module = "com.squareup.retrofit2:converter-jackson", version.ref = "retrofit2" } |
9 | 16 | guava = { group = "com.google.guava", name = "guava", version = "31.1-jre" } |
10 | 17 | system-lambda = { group = "com.github.stefanbirkner", name = "system-lambda", version = "1.2.1" } |
11 | | -wiremock = { group = "com.github.tomakehurst", name = "wiremock-jre8", version = "2.33.2" } |
12 | 18 | jjwt-api = { module = "io.jsonwebtoken:jjwt-api", version.ref = "jjwt" } |
13 | 19 | jjwt-impl = { module = "io.jsonwebtoken:jjwt-impl", version.ref = "jjwt" } |
14 | 20 | jjwt-jackson = { module = "io.jsonwebtoken:jjwt-jackson", version.ref = "jjwt" } |
| 21 | +lombok = { module = "org.projectlombok:lombok", version = "1.18.24" } |
| 22 | + |
| 23 | +okhttp3-logging-interceptor = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "okhttp3" } |
| 24 | + |
| 25 | +jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jackson" } |
| 26 | +jackson-annotations = { module = "com.fasterxml.jackson.core:jackson-annotations", version.ref = "jackson" } |
| 27 | +jackson-datatype-jsr310 = { module = "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", version.ref = "jackson" } |
| 28 | +jackson-module-parameter-names = { module = "com.fasterxml.jackson.module:jackson-module-parameter-names", version.ref = "jackson" } |
| 29 | + |
| 30 | +findbugs-jsr305 = { module = "com.google.code.findbugs:jsr305", version = "3.0.2" } |
| 31 | + |
| 32 | +javax-servlet-api = { module = "javax.servlet:javax.servlet-api", version = "4.0.1" } |
| 33 | + |
| 34 | +# logging |
| 35 | +slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" } |
| 36 | +jul-to-slf4j = { module = "org.slf4j:jul-to-slf4j", version.ref = "slf4j" } |
| 37 | + |
| 38 | +# tests |
| 39 | +assertj-core = { module = "org.assertj:assertj-core", version.ref = "assertj" } |
| 40 | +junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" } |
| 41 | +junit-jupiter-params = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "junit" } |
| 42 | +junit-vintage-engine = { module = "org.junit.vintage:junit-vintage-engine", version.ref = "junit" } |
| 43 | +json-path = { module = "com.jayway.jsonpath:json-path", version.ref = "json-path" } |
| 44 | +json-path-assert = { module = "com.jayway.jsonpath:json-path-assert", version.ref = "json-path" } |
| 45 | +jsonassert = { module = "org.skyscreamer:jsonassert", version = "1.5.1" } |
| 46 | +commons-io = { module = "commons-io:commons-io", version = "2.11.0" } |
| 47 | +reflections = { module = "org.reflections:reflections", version = "0.10.2" } |
| 48 | +mockito-core = { module = "org.mockito:mockito-core", version.ref = "mockito" } |
| 49 | +mockito-junit-jupiter = { module = "org.mockito:mockito-junit-jupiter", version.ref = "mockito" } |
| 50 | +spring-test = { module = "org.springframework:spring-test", version = "5.3.22" } |
| 51 | +wiremock = { group = "com.github.tomakehurst", name = "wiremock-jre8", version = "2.33.2" } |
| 52 | + |
15 | 53 |
|
16 | 54 | [bundles] |
17 | 55 | retrofit2 = ["retrofit2-converter-jackson", "retrofit2-retrofit"] |
18 | | - |
| 56 | +tests = [ |
| 57 | + "assertj-core", |
| 58 | + "junit-jupiter-api", "junit-jupiter-params", "junit-vintage-engine", |
| 59 | + "slf4j-api", |
| 60 | + "json-path", "json-path-assert", "jsonassert", |
| 61 | + "mockito-core", "mockito-junit-jupiter", |
| 62 | +] |
0 commit comments