https://github.com/croabeast/repo
Repository to host all my public repositories as dependencies.
https://github.com/croabeast/repo
Last synced: 5 months ago
JSON representation
Repository to host all my public repositories as dependencies.
- Host: GitHub
- URL: https://github.com/croabeast/repo
- Owner: CroaBeast
- Created: 2025-04-06T15:49:12.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-28T21:26:15.000Z (5 months ago)
- Last Synced: 2026-01-29T12:11:50.184Z (5 months ago)
- Size: 26.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# REPO
Repository to host all my public repositories as dependencies.
## Maven / Gradle Installation
To include Takion, CommandFramework, PrismaticAPI, AdvancementInfo, YAML API, or any other module from the project, add the following repository and dependency to your build configuration. Replace `${artifactName}` with the module you want (e.g., `Takion`, `CommandFramework`, `PrismaticAPI`, `AdvancementInfo`, `YAML-API`) and `${version}` with the desired version tag.
### Maven
Add the repository and dependency to your `pom.xml`:
```xml
croabeast-repo
https://croabeast.github.io/repo/
me.croabeast
${artifactName}
${version}
compile
```
### Gradle
Add the repository and dependency to your `build.gradle`:
```groovy
repositories {
maven {
url "https://croabeast.github.io/repo/"
}
}
dependencies {
implementation "me.croabeast:${artifactName}:${version}"
}
```
Replace `${artifactName}` and `${version}` with the appropriate module name and version.