22
33<p >
44 <img alt =" Version " src =" https://img.shields.io/badge/version-1.9.3-blue.svg?cacheSeconds=2592000 " />
5- <a href =" https://github.com/doyaaaaaken /kotlin-csv/blob/master/LICENSE " >
5+ <a href =" https://github.com/jsoizo /kotlin-csv/blob/master/LICENSE " >
66 <img alt="License: Apache License 2.0" src="https://img.shields.io/badge/License-Apache License 2.0-yellow.svg" target="_blank" />
77 </a >
8- <img alt =" CircleCI " src =" https://circleci.com/gh/doyaaaaaken/kotlin-csv/tree/master.svg?style=svg " />
9- <a href =" https://codecov.io/gh/doyaaaaaken/kotlin-csv " >
10- <img src="https://codecov.io/gh/doyaaaaaken/kotlin-csv/branch/master/graph/badge.svg" alt="codecov" />
8+ <a href =" https://codecov.io/gh/jsoizo/kotlin-csv " >
9+ <img src="https://codecov.io/gh/jsoizo/kotlin-csv/branch/master/graph/badge.svg" alt="codecov" />
1110 </a >
12- <a href =" https://www.codefactor.io/repository/github/doyaaaaaken /kotlin-csv " >
13- <img src="https://www.codefactor.io/repository/github/doyaaaaaken /kotlin-csv/badge" alt="CodeFactor" />
11+ <a href =" https://www.codefactor.io/repository/github/jsoizo /kotlin-csv " >
12+ <img src="https://www.codefactor.io/repository/github/jsoizo /kotlin-csv/badge" alt="CodeFactor" />
1413 </a >
1514</p >
1615
@@ -38,12 +37,16 @@ Pure Kotlin CSV Reader/Writer.
3837
3938### Gradle
4039
41- ``` gradle
42- // Gradle Kotlin DSL
40+ for Kotlin DSL
41+
42+ ``` kotlin
4343implementation(" com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3" ) // for JVM platform
4444implementation(" com.github.doyaaaaaken:kotlin-csv-js:1.9.3" ) // for Kotlin JS platform
45+ ```
46+
47+ for Gradle DSL
4548
46- // Gradle Groovy DSL
49+ ``` groovy
4750implementation 'com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3' // for JVM platform
4851implementation 'com.github.doyaaaaaken:kotlin-csv-js:1.9.3' // for Kotlin JS platform
4952```
@@ -115,7 +118,7 @@ csvReader().open("test1.csv") {
115118csvReader().open(" test2.csv" ) {
116119 readAllWithHeaderAsSequence().forEach { row: Map <String , String > ->
117120 // Do something
118- println (row) // {id=1, name=doyaaaaaken }
121+ println (row) // {id=1, name=jsoizo }
119122 }
120123}
121124```
@@ -276,7 +279,7 @@ val writer = csvWriter {
276279
277280** Documents**
278281
279- * [ Change Logs] ( https://github.com/doyaaaaaken /kotlin-csv/releases )
282+ * [ Change Logs] ( https://github.com/jsoizo /kotlin-csv/releases )
280283
281284** Libraries which use kotlin-csv**
282285
@@ -286,13 +289,13 @@ val writer = csvWriter {
286289
287290## 🤝 Contributing
288291
289- Contributions, [ issues] ( https://github.com/doyaaaaaken /kotlin-csv/issues ) and feature requests are welcome!
292+ Contributions, [ issues] ( https://github.com/jsoizo /kotlin-csv/issues ) and feature requests are welcome!
290293If you have questions, ask away in [ Kotlin Slack's] ( https://kotlinlang.slack.com ) ` kotlin-csv ` room.
291294
292295## 💻 Development
293296
294297``` sh
295- git clone
[email protected] :
doyaaaaaken /kotlin-csv.git
298+ git clone
[email protected] :
jsoizo /kotlin-csv.git
296299cd kotlin-csv
297300./gradlew check
298301```
0 commit comments