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

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.

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.