osiegmar / FastCSV

CSV library for Java that is fast, RFC-compliant and dependency-free.
https://fastcsv.org/
MIT License
542 stars 93 forks source link

[Document only] Update `Declare dependency` section of the `quickstart.mdx` #113

Closed saiya closed 2 months ago

saiya commented 2 months ago

Describe the bug

"Declare dependency" section of the quickstart.mdx looks not pointing latest group ID of the FastCSV artifact.

As that document linking to the https://central.sonatype.com/artifact/de.siegmar/fastcsv , correct group ID looks de.siegmar instead of the com.github.osiegmar.

To Reproduce

Add dependency as in the document:

implementation("com.github.osiegmar:fastcsv:3.2.0") // Does not work

Adding this dependency works well:

implementation("de.siegmar:fastcsv:3.2.0") // Works fine

Additional context

I searched around CSV libraries and found this library has excellent quality, and tried to use this.

Thank you for maintaining this good library; hoping this small change helps other pepole to start using this library more smoothly.

osiegmar commented 2 months ago

Thanks for pointing this out!