Skip to content

Commit

Permalink
Update get-started.md
Browse files Browse the repository at this point in the history
  • Loading branch information
babyfish-ct authored Feb 27, 2022
1 parent da32fa7 commit a4a7417
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions doc/kimmer-sql/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
b. Add this section into **dependencies{}**
```
implementation("org.babyfish.kimmer:kimmer-sql:0.1.9")
ksp("org.babyfish.kimmer:kimmer-ksp:0.1.9")
implementation("org.babyfish.kimmer:kimmer-sql:0.2.3")
ksp("org.babyfish.kimmer:kimmer-ksp:0.2.3")
runtimeOnly("com.h2database:h2:2.1.210")
```
Expand Down Expand Up @@ -106,8 +106,14 @@
val firstName: String
val lastName: String
val fullName: String
val gender: Gender
val books: List<Book>
}
enum class Gender {
MALE,
FEMALE
}
```
Two points to note
Expand Down

0 comments on commit a4a7417

Please sign in to comment.