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.
- Host: GitHub
- URL: https://github.com/jailgens/mirror
- Owner: JailGens
- License: mit
- Created: 2022-10-30T01:22:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-11T15:08:25.000Z (about 1 year ago)
- Last Synced: 2025-04-11T16:26:22.656Z (about 1 year ago)
- Topics: api, java, java-11, library, reflection
- Language: Java
- Homepage: https://dev.jailgens.net/mirror
- Size: 470 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
Mirror
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

### 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)