# configured-YAML
YAML file-based implementation, compatible with all Java environments.
## Dependencies
### Maven Dependency
```xml
maven
Maven Central
https://repo1.maven.org/maven2
configured
GitHub Packages
https://maven.pkg.github.com/CarmJos/configured
```
```xml
cc.carm.lib
configured-yaml
[LATEST RELEASE]
compile
```
### Gradle Dependency
```groovy
repositories {
// Using Maven Central Repository for secure and stable updates, though synchronization might be needed.
mavenCentral()
// Using GitHub dependencies for real-time updates, configuration required (recommended).
maven { url 'https://maven.pkg.github.com/CarmJos/configured' }
}
```
```groovy
dependencies {
api "cc.carm.lib:configured-yaml:[LATEST RELEASE]"
}
```