diff --git a/README.md b/README.md new file mode 100644 index 0000000..60659e8 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +grails-csv +=================== + +The csv plugin provides utility methods and also support for reading/writing to csv files. It uses `opencsv` library. + +Installation +=================== + +Add dependency to your build.gradle for Grails 3.x: + +``` +repositories { + ... + maven { url "http://dl.bintray.com/sachinverma/plugins" } +} + +dependencies { + compile 'org.grails.plugins:grails-csv:1.0.1' +} +```