Repository to host all my public repositories as dependencies.
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.
Add the repository and dependency to your pom.xml:
<repositories>
<repository>
<id>croabeast-repo</id>
<url>https://croabeast.github.io/repo/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>me.croabeast</groupId>
<artifactId>${artifactName}</artifactId>
<version>${version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
Add the repository and dependency to your build.gradle:
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.