From 6d51aa5eb85722ebcf592418dd964ddc722b5620 Mon Sep 17 00:00:00 2001 From: Thomas Rasmussen Date: Tue, 21 Apr 2026 18:24:33 +0200 Subject: [PATCH 1/3] Update README.md file The project has a GitHub page containing documentation but I think the README should contain a short description --- README.md | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 97e0a26..7f24e5c 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,42 @@ Grails Export Plugin ==================== -The official Grails Export Plugin. +The official Grails Export Plugin. -The user guide can be found here: [Documentation] +This plugin offers export functionality supporting different formats e.g. CSV, Excel (xls, xlsx), +Open Document Spreadsheet, PDF and XML and can be extended to add additional formats. + +The user guide can be found here: 📚 [Documentation] This was previously forked from [Nathan Wells] +## Installation + +Add the following dependency to the `build.gradle` file: + +### Grails 7.x + +``` +dependencies { + implementation("io.github.gpc:grails-export:7.0.0") +} +``` + +### Grails 5.x - 6.x + +``` +dependencies { + implementation("org.grails.plugins:export:2.0.0") +} +``` + +### Grails 3.x - 4.x + +``` +dependencies { + compile("org.grails.plugins:export:2.0.0") +} +``` + [Documentation]: https://gpc.github.io/grails-export/ [Nathan Wells]: https://github.com/nwwells/grails-export From cff1e3e7fb52b5fd7efba2c157e68a803d90c6a0 Mon Sep 17 00:00:00 2001 From: Thomas Rasmussen Date: Tue, 21 Apr 2026 18:26:28 +0200 Subject: [PATCH 2/3] Removed Travis CI config file The project is no longer build using Travis CI (replaced by GitHub Actions). --- .travis.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b6c533e..0000000 --- a/.travis.yml +++ /dev/null @@ -1,22 +0,0 @@ -sudo: false -branches: - only: - - 2.0.x -cache: - directories: - - $HOME/.gradle -language: groovy -jdk: -- openjdk8 -before_script: -- rm -rf target -script: ./travis-build.sh -env: - global: - - GIT_NAME="Graeme Rocher" - - GIT_EMAIL="graeme.rocher@gmail.com" - - secure: JaFy58AdmU5xBKcUhdcDAQpG9cKbSsNjuVIN/JVuRKUiF+ybVpUEIwSMrsD4twi60zmMOrTevWuDc0u+euxfO0PV9z1/c/KeMLqJqY/vYgRaGZqo+hbL/gNjfoJNRhpxCpQyx1eL0Z06VxFmF6lU7zS/eeJ3fn8wrKtUl5gGD0Q= - - secure: PGe50WPj2amLzvPHXQNsEIUqDbVQAwTnF7isrGdpAu7iioF2JEUyKMiAM9sNBWBnNyd1iUHgvrRvU0n/7JDJq52g3cxIH++sW7M5kVWbqDg0zo1aJmTWf9yf2t0Z8dkh9JHp1bTawrleKZGeJEOChS+OmHvS7Hk9iPpN13TFAOc= - - secure: WzglbKCji6ggEWmX5xKX0ufQ9ANIPX9tOg++u5vHnEUC1NSHBwbVyfVNfrcM/n/vIzz7huahZOtYx6ec77tNo7a388/MdNZ2lrOfdJhuAX9yx9KoVJHdvJ5zG4hFiuQ0Z/yuIV0x2kiMgmIP6cO4Lg/rWC39frAm26m0efCKJCg= - - secure: mALDJEmeJoDamKmgAKrKpvelzZ+TCZZGT94k0qFoo+zlgCK51aw9gaBsAbPOFyOzPWB0N2MBv7KxIsYpdx8bNL2Wqz32FHG8OzTFJtaWghlo2ebu/MRDfiPE3jIXteelQHK9OQl7jJ2Y7ouslRLyZXIMt+PU9nnozPMsX7Q4IZ4= - - secure: G302uydZ8NLdXalKPbOUCf0BEPGOiousbjSY7rM+6jf0xoBGHbELwi0eQehp72iXpUCt0p+iyc6AKy0DE0yK6goKBbRL1yK8fdwhNY1L/3lUGl2acDOBU58RuOisfQIAZ+JKnoHFWHFbE7WCpD7vlKW/s/Gx8RWcsfcg32OgXJ0= From 7b9e78c99a1c86dcdf3c721e6bdab3d51277acb8 Mon Sep 17 00:00:00 2001 From: Thomas Rasmussen Date: Tue, 21 Apr 2026 18:28:16 +0200 Subject: [PATCH 3/3] Gradle syntax cleanup Fixes the Gradle warning: "Properties should be assigned using the 'propName = value' syntax" --- plugin/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/build.gradle b/plugin/build.gradle index c42161c..ed5de52 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -6,7 +6,7 @@ plugins { } version = projectVersion -group "io.github.gpc" +group = "io.github.gpc" dependencies { profile 'org.apache.grails.profiles:web-plugin'