Skip to content

Commit

Permalink
documentation: added gradle documentation (redis#82)
Browse files Browse the repository at this point in the history
Co-authored-by: ally-jarrett <ally@redis.com>
  • Loading branch information
ally-jarrett and ally-jarrett committed Aug 1, 2022
1 parent 86d6d83 commit 9b4c0af
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,31 @@ and

**Ready to learn more?** Check out the [getting started](docs/getting_started.md) guide.

## 🐘 Gradle configuration

### Add Repository - Snapshots Only

```groovy
repositories {
mavenCentral()
maven {
url 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
}
}
```

### Dependency
```groovy
ext {
redisOmVersion = '0.5.2-SNAPSHOT'
}
dependencies {
implementation: "com.redis.om:redis-om-spring:$redisOmVersion"
}
}
```

## 📚 Documentation

The Redis OM documentation is available [here](docs/index.md).
Expand Down

0 comments on commit 9b4c0af

Please sign in to comment.