Skip to content

Commit aaa4ed2

Browse files
committed
Update dependencies
1 parent fc249ec commit aaa4ed2

File tree

7 files changed

+87
-3
lines changed

7 files changed

+87
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ as the application framework, in case one of those is your framework of choice.
2727
* [Architecture](#architecture)
2828
* [Project Structure](#project-structure)
2929
* [Pre-Requisites](#pre-requisites)
30-
* [Quick Start](#quick-start)
30+
* [How to Run](#how-to-run)
3131
* [Complete Application Deployment](./doc/complete-application-deployment.md)
3232
* [Integrating with Oracle OCI Application Performance Monitoring (APM)](./doc/oracle-cloud-apm.md)
3333
* [Development](./doc/development.md)
@@ -70,7 +70,7 @@ contains Kubernetes deployment files for the whole application,
7070
top-level POM file which allows you to easily build the whole project and import it
7171
into your favorite IDE.
7272

73-
## Quick Start
73+
## How to Run
7474

7575
Kubernetes scripts depend on Kustomize, so make sure that you have a newer
7676
version of `kubectl` that supports it (at least 1.16 or above).
@@ -160,7 +160,7 @@ done
160160

161161
## Complete Application Deployment
162162

163-
The Quick Start shows how you can run the application locally, but that may not
163+
The [How to Run](#how-to-run) above shows how you can run the application locally, but that may not
164164
be enough if you want to experiment by scaling individual services, look at tracing data in Jaeger,
165165
monitor services via Prometheus and Grafana, or make API calls directly via Swagger UI.
166166

carts/pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
<version.lib.hamcrest>2.2</version.lib.hamcrest>
3434
<version.lib.rest-assured>5.4.0</version.lib.rest-assured>
3535
<version.lib.tracerresolver>0.1.8</version.lib.tracerresolver>
36+
<version.lib.logback>1.5.3</version.lib.logback>
37+
<version.lib.okhttp3>4.12.0</version.lib.okhttp3>
3638

3739
<!-- micronaut-parent overrides -->
3840
<micronaut.coherence.version>5.0.1</micronaut.coherence.version>
@@ -190,6 +192,13 @@
190192
<dependency>
191193
<groupId>ch.qos.logback</groupId>
192194
<artifactId>logback-classic</artifactId>
195+
<version>${version.lib.logback}</version>
196+
<scope>runtime</scope>
197+
</dependency>
198+
<dependency>
199+
<groupId>ch.qos.logback</groupId>
200+
<artifactId>logback-core</artifactId>
201+
<version>${version.lib.logback}</version>
193202
<scope>runtime</scope>
194203
</dependency>
195204
<dependency>
@@ -210,6 +219,11 @@
210219
<artifactId>micronaut-tracing-brave-http</artifactId>
211220
<scope>compile</scope>
212221
</dependency>
222+
<dependency>
223+
<groupId>com.squareup.okhttp3</groupId>
224+
<artifactId>okhttp</artifactId>
225+
<version>${version.lib.okhttp3}</version>
226+
</dependency>
213227

214228
<!-- TODO Needs to be removed -->
215229

catalog/pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
<version.lib.hamcrest>2.2</version.lib.hamcrest>
3434
<version.lib.rest-assured>5.4.0</version.lib.rest-assured>
3535
<version.lib.tracerresolver>0.1.8</version.lib.tracerresolver>
36+
<version.lib.logback>1.5.3</version.lib.logback>
37+
<version.lib.okhttp3>4.12.0</version.lib.okhttp3>
3638

3739
<!-- micronaut-parent overrides -->
3840
<micronaut.coherence.version>5.0.1</micronaut.coherence.version>
@@ -191,6 +193,13 @@
191193
<dependency>
192194
<groupId>ch.qos.logback</groupId>
193195
<artifactId>logback-classic</artifactId>
196+
<version>${version.lib.logback}</version>
197+
<scope>runtime</scope>
198+
</dependency>
199+
<dependency>
200+
<groupId>ch.qos.logback</groupId>
201+
<artifactId>logback-core</artifactId>
202+
<version>${version.lib.logback}</version>
194203
<scope>runtime</scope>
195204
</dependency>
196205
<dependency>
@@ -211,6 +220,11 @@
211220
<artifactId>micronaut-tracing-brave-http</artifactId>
212221
<scope>compile</scope>
213222
</dependency>
223+
<dependency>
224+
<groupId>com.squareup.okhttp3</groupId>
225+
<artifactId>okhttp</artifactId>
226+
<version>${version.lib.okhttp3}</version>
227+
</dependency>
214228

215229
<!-- TODO Needs to be removed -->
216230

orders/pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
<version.lib.hamcrest>2.2</version.lib.hamcrest>
3535
<version.lib.rest-assured>5.4.0</version.lib.rest-assured>
3636
<version.lib.tracerresolver>0.1.8</version.lib.tracerresolver>
37+
<version.lib.logback>1.5.3</version.lib.logback>
38+
<version.lib.okhttp3>4.12.0</version.lib.okhttp3>
3739

3840
<!-- micronaut-parent overrides -->
3941
<micronaut.coherence.version>5.0.1</micronaut.coherence.version>
@@ -202,6 +204,13 @@
202204
<dependency>
203205
<groupId>ch.qos.logback</groupId>
204206
<artifactId>logback-classic</artifactId>
207+
<version>${version.lib.logback}</version>
208+
<scope>runtime</scope>
209+
</dependency>
210+
<dependency>
211+
<groupId>ch.qos.logback</groupId>
212+
<artifactId>logback-core</artifactId>
213+
<version>${version.lib.logback}</version>
205214
<scope>runtime</scope>
206215
</dependency>
207216
<dependency>
@@ -222,6 +231,11 @@
222231
<artifactId>micronaut-tracing-brave-http</artifactId>
223232
<scope>compile</scope>
224233
</dependency>
234+
<dependency>
235+
<groupId>com.squareup.okhttp3</groupId>
236+
<artifactId>okhttp</artifactId>
237+
<version>${version.lib.okhttp3}</version>
238+
</dependency>
225239

226240
<!-- TODO Needs to be removed -->
227241

payment/pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
<version.lib.hamcrest>2.2</version.lib.hamcrest>
3434
<version.lib.rest-assured>5.4.0</version.lib.rest-assured>
3535
<version.lib.tracerresolver>0.1.8</version.lib.tracerresolver>
36+
<version.lib.logback>1.5.3</version.lib.logback>
37+
<version.lib.okhttp3>4.12.0</version.lib.okhttp3>
3638

3739
<!-- micronaut-parent overrides -->
3840
<micronaut.coherence.version>5.0.1</micronaut.coherence.version>
@@ -196,6 +198,13 @@
196198
<dependency>
197199
<groupId>ch.qos.logback</groupId>
198200
<artifactId>logback-classic</artifactId>
201+
<version>${version.lib.logback}</version>
202+
<scope>runtime</scope>
203+
</dependency>
204+
<dependency>
205+
<groupId>ch.qos.logback</groupId>
206+
<artifactId>logback-core</artifactId>
207+
<version>${version.lib.logback}</version>
199208
<scope>runtime</scope>
200209
</dependency>
201210
<dependency>
@@ -221,6 +230,11 @@
221230
<groupId>io.micronaut.tracing</groupId>
222231
<artifactId>micronaut-tracing-brave-http</artifactId>
223232
</dependency>
233+
<dependency>
234+
<groupId>com.squareup.okhttp3</groupId>
235+
<artifactId>okhttp</artifactId>
236+
<version>${version.lib.okhttp3}</version>
237+
</dependency>
224238

225239
<!-- TODO Needs to be removed -->
226240

shipping/pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
<version.lib.hamcrest>2.2</version.lib.hamcrest>
3434
<version.lib.rest-assured>5.4.0</version.lib.rest-assured>
3535
<version.lib.tracerresolver>0.1.8</version.lib.tracerresolver>
36+
<version.lib.logback>1.5.3</version.lib.logback>
37+
<version.lib.okhttp3>4.12.0</version.lib.okhttp3>
3638

3739
<!-- overrides from micronaut-parent -->
3840
<micronaut.coherence.version>5.0.1</micronaut.coherence.version>
@@ -191,6 +193,13 @@
191193
<dependency>
192194
<groupId>ch.qos.logback</groupId>
193195
<artifactId>logback-classic</artifactId>
196+
<version>${version.lib.logback}</version>
197+
<scope>runtime</scope>
198+
</dependency>
199+
<dependency>
200+
<groupId>ch.qos.logback</groupId>
201+
<artifactId>logback-core</artifactId>
202+
<version>${version.lib.logback}</version>
194203
<scope>runtime</scope>
195204
</dependency>
196205
<!-- https://mvnrepository.com/artifact/org.fusesource.jansi/jansi -->
@@ -211,6 +220,11 @@
211220
<groupId>io.micronaut.tracing</groupId>
212221
<artifactId>micronaut-tracing-brave-http</artifactId>
213222
</dependency>
223+
<dependency>
224+
<groupId>com.squareup.okhttp3</groupId>
225+
<artifactId>okhttp</artifactId>
226+
<version>${version.lib.okhttp3}</version>
227+
</dependency>
214228

215229
<!-- TODO Needs to be removed -->
216230

users/pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
<version.lib.hamcrest>2.2</version.lib.hamcrest>
3434
<version.lib.rest-assured>5.4.0</version.lib.rest-assured>
3535
<version.lib.tracerresolver>0.1.8</version.lib.tracerresolver>
36+
<version.lib.logback>1.5.3</version.lib.logback>
37+
<version.lib.okhttp3>4.12.0</version.lib.okhttp3>
3638

3739
<!-- micronaut-parent overrides -->
3840
<micronaut.coherence.version>5.0.1</micronaut.coherence.version>
@@ -190,6 +192,13 @@
190192
<dependency>
191193
<groupId>ch.qos.logback</groupId>
192194
<artifactId>logback-classic</artifactId>
195+
<version>${version.lib.logback}</version>
196+
<scope>runtime</scope>
197+
</dependency>
198+
<dependency>
199+
<groupId>ch.qos.logback</groupId>
200+
<artifactId>logback-core</artifactId>
201+
<version>${version.lib.logback}</version>
193202
<scope>runtime</scope>
194203
</dependency>
195204
<!-- https://mvnrepository.com/artifact/org.fusesource.jansi/jansi -->
@@ -210,6 +219,11 @@
210219
<groupId>io.micronaut.tracing</groupId>
211220
<artifactId>micronaut-tracing-brave-http</artifactId>
212221
</dependency>
222+
<dependency>
223+
<groupId>com.squareup.okhttp3</groupId>
224+
<artifactId>okhttp</artifactId>
225+
<version>${version.lib.okhttp3}</version>
226+
</dependency>
213227

214228
<!-- TODO Needs to be removed -->
215229

0 commit comments

Comments
 (0)