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
29 changes: 22 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,34 @@
🧩 Grails Cache Ehcache Plugin
====================

Makes Ehcache the cache implementation for the [Grails Cache Plugin](https://github.com/grails-plugins/grails-cache)
[![Maven Central](https://img.shields.io/maven-metadata/v.svg?metadataUrl=https://repo1.maven.org/maven2/org/grails/plugins/cache-ehcache/maven-metadata.xml&label=maven-central)](https://central.sonatype.com/artifact/org.grails.plugins/cache-ehcache)
[![CI](https://github.com/grails-plugins/grails-cache-ehcache/actions/workflows/ci.yml/badge.svg?event=push)](https://github.com/grails-plugins/grails-cache-ehcache/actions/workflows/ci.yml)

## Grails 7
Makes [Ehcache](https://www.ehcache.org/) the cache implementation for the [Grails Cache Plugin](https://github.com/apache/grails-core/)

TODO...
## 🚀 Quick Start

## Grails 3
Add the dependency to your `build.gradle`:

📖 [Documentation](http://grails-plugins.github.io/grails-cache-ehcache/latest/)
### Grails 7

## Grails 2
```groovy
dependencies {
implementation "org.grails.plugins:cache-ehcache:5.0.0-RC1"
}
```

📖 [Documentation](http://grails-plugins.github.io/grails-cache-ehcache/)
### Grails 3+

```groovy
dependencies {
compile "org.grails.plugins:cache-ehcache:3.0.0"
}
```

## 📖 Documentation

Full documentation is available at the project [documentation](http://grails-plugins.github.io/grails-cache-ehcache/) site.

## Branches

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ An Ehcache-based implementation of the Cache plugin.
def profiles = ['web']

// URL to the plugin's documentation
def documentation = "https://grails.org/plugin/cache-ehcache"
def documentation = "https://grails-plugins.github.io/grails-cache-ehcache/"

def license = "APACHE"

Expand Down
Loading