Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasleplus committed Jan 16, 2025
1 parent 1add7ae commit 3f40eb0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,38 @@ A small library of (hopefully) useful Java classes.

[Maven Site](https://leplusorg.github.io/ristretto)

# Installation

## Maven

```xml
<dependency>
<groupId>org.leplus</groupId>
<artifactId>ristretto</artifactId>
<version>1.0.3</version>
</dependency>
```

## Gradle

If you use ristretto in your implementation only:

```gradle
dependencies {
implementation("org.leplus:ristretto:1.0.3")
}
```

If you expose ristretto types in your public API:

```gradle
dependencies {
api("org.leplus:ristretto:1.0.3")
}
```

# Usage

## [org.leplus.ristretto.util.UUIDConvertor](https://javadoc.io/doc/org.leplus/ristretto/latest/org/leplus/ristretto/util/UUIDConvertor.html)

This class provides utility method to convert different primitives from/to UUID.
Expand Down

0 comments on commit 3f40eb0

Please sign in to comment.