Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

35 changes: 33 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

version = projectVersion
group "io.github.gpc"
group = "io.github.gpc"

dependencies {
profile 'org.apache.grails.profiles:web-plugin'
Expand Down
Loading