Skip to content

Commit 5e6645a

Browse files
committed
update pom
1 parent 4296b21 commit 5e6645a

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# SimplCache - An Easy Java Cache Library
2+
[![Maven Central](https://img.shields.io/maven-central/v/com.github.lekhana3003/SimplCache.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.github.lekhana3003%22%20AND%20a:%22SimplCache%22) [![License](https://img.shields.io/badge/License-Apache%202.0-green.svg)](https://opensource.org/licenses/Apache-2.0)<br>
23
SimplCache library can be used to implement cache instantly.<br/>
34
The library takes implementations of two databases,
45
* Cache Database
56
* Persistent Database<br>
67

7-
After which it provides all the features of cache seamlessly.
8+
After which it provides all the features of cache seamlessly.<br>
9+
810
## Table of Contents
911
- [1. Features](#1-features)
1012
- [2. Setup](#2-setup)
@@ -52,16 +54,16 @@ Save the state of the cache at any point in time by calling a simple method and
5254
## 2. Setup
5355
Maven:
5456
```
55-
repositories {
56-
mavenCentral()
57-
//maven { url "https://oss.sonatype.org/content/repositories/snapshots" } //for snashot builds
58-
59-
}
57+
<dependency>
58+
<groupId>com.github.lekhana3003</groupId>
59+
<artifactId>SimplCache</artifactId>
60+
<version>1.2.x</version>
61+
</dependency>
6062
```
6163
Gradle:
6264
```
6365
dependencies {
64-
compile ''
66+
implementation 'com.github.lekhana3003:SimplCache:1.2.x'
6567
}
6668
```
6769
<table>

0 commit comments

Comments
 (0)