File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Quinine
2
2
3
3
![ build status] ( https://github.com/Project5E/quinine/workflows/build/badge.svg )
4
+ [ ![ Jitpack] ( https://jitpack.io/v/com.moumoux/quinine.svg )] ( https://jitpack.io/#com.moumoux/quinine )
4
5
![ Kotlin 1.3.72] ( https://img.shields.io/badge/Kotlin-1.3.72-orange )
5
6
6
7
So far, it's a Kotlin cache library using [ Caffeine] ( https://github.com/ben-manes/caffeine )
@@ -11,6 +12,23 @@ Still, working in progress.
11
12
12
13
## Example
13
14
15
+ Add this to ` build.gradle ` :
16
+ ``` gradle
17
+ allprojects {
18
+ repositories {
19
+ ...
20
+ maven { url 'https://jitpack.io' }
21
+ }
22
+ }
23
+ ```
24
+ ``` gradle
25
+ dependencies {
26
+ implementation 'com.moumoux:quinine:0.0.1'
27
+ }
28
+ ```
29
+
30
+ ### Usage
31
+
14
32
``` kotlin
15
33
val cache: QuinineCache <Int , Int > = Quinine
16
34
.newBuilder()
You can’t perform that action at this time.
0 commit comments