Skip to content

Commit 9435047

Browse files
committed
ReadMe Updated
1 parent 0856bd2 commit 9435047

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ Spring Boot Kotlin Application
33

44
Github Actions Enabled for this repo to buld and publish Docker Images after each Commit
55

6+
https://github.com/kousen/spring-kotlin
7+
8+
https://codebuild.us-east-1.amazonaws.com/badges?uuid=eyJlbmNyeXB0ZWREYXRhIjoicGdjWUFKUXdGOStnMnJqZnA2enVIQlcyTURCZmpmcjhxN21FOVJEMUNmdnhHYzEyaWkyL3Vqanh5dGNLQzRkdE5Jb0J3c1lMUG1hck9ZYjc2ZXRYNnZBPSIsIml2UGFyYW1ldGVyU3BlYyI6IktkWEhDRVVtVHJNRzRKc1YiLCJtYXRlcmlhbFNldFNlcmlhbCI6MX0%3D&branch=master
9+
610
### Reference Documentation
711
For further reference, please consider the following sections:
812

pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,15 @@
2828
<groupId>org.springframework.boot</groupId>
2929
<artifactId>spring-boot-starter-data-rest</artifactId>
3030
</dependency>
31+
<dependency>
32+
<groupId>org.springframework.boot</groupId>
33+
<artifactId>spring-boot-starter-webflux</artifactId>
34+
</dependency>
3135
<dependency>
3236
<groupId>com.fasterxml.jackson.module</groupId>
3337
<artifactId>jackson-module-kotlin</artifactId>
3438
</dependency>
39+
3540
<dependency>
3641
<groupId>org.jetbrains.kotlin</groupId>
3742
<artifactId>kotlin-reflect</artifactId>
@@ -41,6 +46,15 @@
4146
<artifactId>kotlin-stdlib-jdk8</artifactId>
4247
</dependency>
4348

49+
<dependency>
50+
<groupId>org.jetbrains.kotlinx</groupId>
51+
<artifactId>kotlinx-coroutines-core</artifactId>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.jetbrains.kotlinx</groupId>
55+
<artifactId>kotlinx-coroutines-reactor</artifactId>
56+
</dependency>
57+
4458
<dependency>
4559
<groupId>org.springframework.boot</groupId>
4660
<artifactId>spring-boot-devtools</artifactId>

0 commit comments

Comments
 (0)