An open API service indexing awesome lists of open source software.

https://github.com/404setup/tiny-utils

Some tool libraries that don't know where to put them
https://github.com/404setup/tiny-utils

Last synced: 15 days ago
JSON representation

Some tool libraries that don't know where to put them

Awesome Lists containing this project

README

          

# Tiny Utils

[![Maven Central Version](https://img.shields.io/maven-central/v/one.pkg/tiny-utils)](https://central.sonatype.com/artifact/one.pkg/tiny-utils)
[![javadoc](https://javadoc.io/badge2/one.pkg/tiny-utils/javadoc.svg)](https://javadoc.io/doc/one.pkg/tiny-utils)

need Java 17.

## Install

`maven`

```xml

one.pkg
tiny-utils
[VERSION]

```

`Gradle (Groovy)`
```groovy
repositories {
mavenCentral()
}

dependencies {
implementation 'one.pkg:tiny-utils:[VERSION]'
}
```

`Gradle (Kotlin DSL)`
```kotlin
repositories {
mavenCentral()
}

dependencies {
implementation("one.pkg:tiny-utils:[VERSION]")
}
```