Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaimss authored Jul 20, 2020
1 parent f1206c9 commit 34b1314
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,29 +14,28 @@ This project was made with both Bungeecord and Bukkit in mind.
When making a Bukkit plugin, you can include the Bukkit module as a dependency, and when making a Bungeecord plugin, you can include the Bungeecord dependency.

#### Including Jaims' Utils
[![Generic badge](https://img.shields.io/badge/Latest-2.0-green.svg)](https://github.com/Jaimss/mcutils/releases)
[![Stable Release](https://img.shields.io/github/v/release/jaimss/mcutils?color=brightgreen&label=stable)](https://github.com/Jaimss/mcutils/releases) [![Latest Release](https://img.shields.io/github/v/release/jaimss/mcutils?color=ffaa00&include_prereleases&label=latest)](https://github.com/Jaimss/mcutils/releases)
- Platform:
- `bungee` for Bungeecord Development
- `bukkit` for Bukkit Development
*The jaims.dev repo is coming soon. For now install locally or use [jitpack.io](https://jitpack.io)*

One easy way to include this in your project is to use [jitpack](https://jitpack.io/#Jaimss/mcutils). You can simply navigate to the **releases** tab and select the latest from above.

Alternatively you can download the latest [package](https://github.com/Jaimss/mcutils/packages) or the latest [release](https://github.com/Jaimss/mcutils/releases/latest) and install it to your maven local repository with the following command `./gradlew publishToMavenLocal`. Then you can add it as a dependency like below:
###### Gradle (build.gradle)
```gradle
repositories {
maven { url 'repo.jaims.dev' }
mavenLocal()
}
dependencies {
implementation 'dev.jaims.mcutils:{platform}:{version}'
}
```
###### Maven (pom.xml)
```xml
<repositories>
<id>jaimsrepo</id>
<url>repo.jaims.dev</url>
</repositories>
<dependencies>
<dependency>
<groupId>dev.jaims.mcutilsdev.jaims.mcutils</groupId>
<groupId>dev.jaims.mcutils</groupId>
<artifactId>{platform}</artifactId>
<version>{version}</version>
</dependency>
Expand Down

0 comments on commit 34b1314

Please sign in to comment.