|
| 1 | +plugins { |
| 2 | + id 'org.springframework.boot' apply false |
| 3 | +} |
| 4 | + |
1 | 5 | dependencies { |
2 | 6 | api project(':envoy-control-services') |
3 | 7 |
|
4 | | - implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: versions.kotlin |
5 | | - implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8', version: versions.kotlin |
6 | | - api group: 'com.fasterxml.jackson.module', name: 'jackson-module-afterburner', version: versions.jackson |
7 | | - api group: 'com.fasterxml.jackson.module', name: 'jackson-module-kotlin', version: versions.jackson |
8 | | - implementation group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: versions.kotlin |
9 | | - api group: 'io.dropwizard.metrics', name: 'metrics-core', version: versions.dropwizard |
10 | | - api group: 'io.micrometer', name: 'micrometer-core', version: versions.micrometer |
| 8 | + implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib' |
| 9 | + api group: 'com.fasterxml.jackson.module', name: 'jackson-module-afterburner' |
| 10 | + api group: 'com.fasterxml.jackson.module', name: 'jackson-module-kotlin' |
| 11 | + implementation group: 'org.jetbrains.kotlin', name: 'kotlin-reflect' |
| 12 | + api group: 'io.dropwizard.metrics', name: 'metrics-core' |
| 13 | + api group: 'io.micrometer', name: 'micrometer-core' |
11 | 14 | implementation group: 'com.google.re2j', name: 're2j', version: versions.re2j |
12 | 15 |
|
13 | 16 | api group: 'io.envoyproxy.controlplane', name: 'server', version: versions.java_controlplane |
14 | 17 |
|
15 | 18 | implementation group: 'io.grpc', name: 'grpc-netty', version: versions.grpc |
16 | 19 |
|
17 | | - implementation group: 'io.projectreactor', name: 'reactor-core', version: versions.reactor |
| 20 | + implementation group: 'io.projectreactor', name: 'reactor-core' |
18 | 21 |
|
19 | | - implementation group: 'org.slf4j', name: 'jcl-over-slf4j', version: versions.slf4j |
20 | | - implementation group: 'ch.qos.logback', name: 'logback-classic', version: versions.logback |
| 22 | + implementation group: 'org.slf4j', name: 'jcl-over-slf4j' |
| 23 | + implementation group: 'ch.qos.logback', name: 'logback-classic' |
21 | 24 |
|
22 | 25 | testImplementation group: 'io.grpc', name: 'grpc-testing', version: versions.grpc |
23 | | - testImplementation group: 'io.projectreactor', name: 'reactor-test', version: versions.reactor |
24 | | - testImplementation group: 'org.mockito', name: 'mockito-core', version: versions.mockito |
| 26 | + testImplementation group: 'io.projectreactor', name: 'reactor-test' |
| 27 | + testImplementation group: 'org.mockito', name: 'mockito-core' |
25 | 28 | testImplementation group: 'cglib', name: 'cglib-nodep', version: versions.cglib |
26 | 29 |
|
27 | | - testImplementation group: 'org.awaitility', name: 'awaitility', version: versions.awaitility |
| 30 | + testImplementation group: 'org.awaitility', name: 'awaitility' |
28 | 31 |
|
29 | | - testImplementation group: 'org.testcontainers', name: 'testcontainers', version: versions.testcontainers |
30 | | - testImplementation group: 'org.testcontainers', name: 'junit-jupiter', version: versions.testcontainers |
| 32 | + testImplementation group: 'org.testcontainers', name: 'testcontainers' |
| 33 | + testImplementation group: 'org.testcontainers', name: 'junit-jupiter' |
31 | 34 | } |
32 | 35 |
|
33 | 36 | tasks.withType(GroovyCompile) { |
|
0 commit comments