Commit aaa4ed2 1 parent fc249ec commit aaa4ed2 Copy full SHA for aaa4ed2
File tree 7 files changed +87
-3
lines changed
7 files changed +87
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ as the application framework, in case one of those is your framework of choice.
27
27
* [ Architecture] ( #architecture )
28
28
* [ Project Structure] ( #project-structure )
29
29
* [ Pre-Requisites] ( #pre-requisites )
30
- * [ Quick Start ] ( #quick-start )
30
+ * [ How to Run ] ( #how-to-run )
31
31
* [ Complete Application Deployment] ( ./doc/complete-application-deployment.md )
32
32
* [ Integrating with Oracle OCI Application Performance Monitoring (APM)] ( ./doc/oracle-cloud-apm.md )
33
33
* [ Development] ( ./doc/development.md )
@@ -70,7 +70,7 @@ contains Kubernetes deployment files for the whole application,
70
70
top-level POM file which allows you to easily build the whole project and import it
71
71
into your favorite IDE.
72
72
73
- ## Quick Start
73
+ ## How to Run
74
74
75
75
Kubernetes scripts depend on Kustomize, so make sure that you have a newer
76
76
version of ` kubectl ` that supports it (at least 1.16 or above).
160
160
161
161
## Complete Application Deployment
162
162
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
164
164
be enough if you want to experiment by scaling individual services, look at tracing data in Jaeger,
165
165
monitor services via Prometheus and Grafana, or make API calls directly via Swagger UI.
166
166
Original file line number Diff line number Diff line change 33
33
<version .lib.hamcrest>2.2</version .lib.hamcrest>
34
34
<version .lib.rest-assured>5.4.0</version .lib.rest-assured>
35
35
<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>
36
38
37
39
<!-- micronaut-parent overrides -->
38
40
<micronaut .coherence.version>5.0.1</micronaut .coherence.version>
190
192
<dependency >
191
193
<groupId >ch.qos.logback</groupId >
192
194
<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 >
193
202
<scope >runtime</scope >
194
203
</dependency >
195
204
<dependency >
210
219
<artifactId >micronaut-tracing-brave-http</artifactId >
211
220
<scope >compile</scope >
212
221
</dependency >
222
+ <dependency >
223
+ <groupId >com.squareup.okhttp3</groupId >
224
+ <artifactId >okhttp</artifactId >
225
+ <version >${version.lib.okhttp3} </version >
226
+ </dependency >
213
227
214
228
<!-- TODO Needs to be removed -->
215
229
Original file line number Diff line number Diff line change 33
33
<version .lib.hamcrest>2.2</version .lib.hamcrest>
34
34
<version .lib.rest-assured>5.4.0</version .lib.rest-assured>
35
35
<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>
36
38
37
39
<!-- micronaut-parent overrides -->
38
40
<micronaut .coherence.version>5.0.1</micronaut .coherence.version>
191
193
<dependency >
192
194
<groupId >ch.qos.logback</groupId >
193
195
<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 >
194
203
<scope >runtime</scope >
195
204
</dependency >
196
205
<dependency >
211
220
<artifactId >micronaut-tracing-brave-http</artifactId >
212
221
<scope >compile</scope >
213
222
</dependency >
223
+ <dependency >
224
+ <groupId >com.squareup.okhttp3</groupId >
225
+ <artifactId >okhttp</artifactId >
226
+ <version >${version.lib.okhttp3} </version >
227
+ </dependency >
214
228
215
229
<!-- TODO Needs to be removed -->
216
230
Original file line number Diff line number Diff line change 34
34
<version .lib.hamcrest>2.2</version .lib.hamcrest>
35
35
<version .lib.rest-assured>5.4.0</version .lib.rest-assured>
36
36
<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>
37
39
38
40
<!-- micronaut-parent overrides -->
39
41
<micronaut .coherence.version>5.0.1</micronaut .coherence.version>
202
204
<dependency >
203
205
<groupId >ch.qos.logback</groupId >
204
206
<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 >
205
214
<scope >runtime</scope >
206
215
</dependency >
207
216
<dependency >
222
231
<artifactId >micronaut-tracing-brave-http</artifactId >
223
232
<scope >compile</scope >
224
233
</dependency >
234
+ <dependency >
235
+ <groupId >com.squareup.okhttp3</groupId >
236
+ <artifactId >okhttp</artifactId >
237
+ <version >${version.lib.okhttp3} </version >
238
+ </dependency >
225
239
226
240
<!-- TODO Needs to be removed -->
227
241
Original file line number Diff line number Diff line change 33
33
<version .lib.hamcrest>2.2</version .lib.hamcrest>
34
34
<version .lib.rest-assured>5.4.0</version .lib.rest-assured>
35
35
<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>
36
38
37
39
<!-- micronaut-parent overrides -->
38
40
<micronaut .coherence.version>5.0.1</micronaut .coherence.version>
196
198
<dependency >
197
199
<groupId >ch.qos.logback</groupId >
198
200
<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 >
199
208
<scope >runtime</scope >
200
209
</dependency >
201
210
<dependency >
221
230
<groupId >io.micronaut.tracing</groupId >
222
231
<artifactId >micronaut-tracing-brave-http</artifactId >
223
232
</dependency >
233
+ <dependency >
234
+ <groupId >com.squareup.okhttp3</groupId >
235
+ <artifactId >okhttp</artifactId >
236
+ <version >${version.lib.okhttp3} </version >
237
+ </dependency >
224
238
225
239
<!-- TODO Needs to be removed -->
226
240
Original file line number Diff line number Diff line change 33
33
<version .lib.hamcrest>2.2</version .lib.hamcrest>
34
34
<version .lib.rest-assured>5.4.0</version .lib.rest-assured>
35
35
<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>
36
38
37
39
<!-- overrides from micronaut-parent -->
38
40
<micronaut .coherence.version>5.0.1</micronaut .coherence.version>
191
193
<dependency >
192
194
<groupId >ch.qos.logback</groupId >
193
195
<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 >
194
203
<scope >runtime</scope >
195
204
</dependency >
196
205
<!-- https://mvnrepository.com/artifact/org.fusesource.jansi/jansi -->
211
220
<groupId >io.micronaut.tracing</groupId >
212
221
<artifactId >micronaut-tracing-brave-http</artifactId >
213
222
</dependency >
223
+ <dependency >
224
+ <groupId >com.squareup.okhttp3</groupId >
225
+ <artifactId >okhttp</artifactId >
226
+ <version >${version.lib.okhttp3} </version >
227
+ </dependency >
214
228
215
229
<!-- TODO Needs to be removed -->
216
230
Original file line number Diff line number Diff line change 33
33
<version .lib.hamcrest>2.2</version .lib.hamcrest>
34
34
<version .lib.rest-assured>5.4.0</version .lib.rest-assured>
35
35
<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>
36
38
37
39
<!-- micronaut-parent overrides -->
38
40
<micronaut .coherence.version>5.0.1</micronaut .coherence.version>
190
192
<dependency >
191
193
<groupId >ch.qos.logback</groupId >
192
194
<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 >
193
202
<scope >runtime</scope >
194
203
</dependency >
195
204
<!-- https://mvnrepository.com/artifact/org.fusesource.jansi/jansi -->
210
219
<groupId >io.micronaut.tracing</groupId >
211
220
<artifactId >micronaut-tracing-brave-http</artifactId >
212
221
</dependency >
222
+ <dependency >
223
+ <groupId >com.squareup.okhttp3</groupId >
224
+ <artifactId >okhttp</artifactId >
225
+ <version >${version.lib.okhttp3} </version >
226
+ </dependency >
213
227
214
228
<!-- TODO Needs to be removed -->
215
229
You can’t perform that action at this time.
0 commit comments