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

https://github.com/jailgens/mirror

A Java reflection wrapper that provides a clean, and easy-to-use API.
https://github.com/jailgens/mirror

api java java-11 library reflection

Last synced: about 1 year ago
JSON representation

A Java reflection wrapper that provides a clean, and easy-to-use API.

Awesome Lists containing this project

README

          

Mirror


Version

Coverage

Commit activity
License Apache


Java reflection wrapper that provides a much cleaner, and easy-to-use API.

## Table of Contents

1. [Documentation](#-documentation)
2. [Installation](#-installation)
1. [Gradle (Kotlin DSL)](#gradle-kotlin-dsl)
2. [Gradle (Groovy DSL)](#gradle-groovy-dsl)
3. [Maven](#maven)
3. [Contributing](#-contributing)
4. [License](#-license)

## 📚 Documentation

- [📖 User Guide](https://dev.jailgens.net/docs/mirror/getting-started)
- [📄 Javadoc](https://repo.jailgens.net/javadoc/releases/net/jailgens/mirror/latest)

## 📦 Installation

Version

### Gradle (Kotlin DSL)

```kotlin
repositories {
maven("https://repo.jailgens.net/releases")
}

dependencies {
implementation("net.jailgens:mirror:0.4.0")
}
```

### Gradle (Groovy DSL)

```groovy
repositories {
maven {
url "https://repo.jailgens.net/releases"
}
}

dependencies {
implementation "net.jailgens:mirror:0.4.0"
}
```

### Maven

```xml


jailgens
https://repo.jailgens.net/releases


net.jailgens
mirror
0.4.0

```

## 🤝 Contributing

[CONTRIBUTING.md](CONTRIBUTING.md)

## 📝 License

[LICENSE](LICENSE)