Skip to content

Commit

Permalink
bumped version & updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
vaperion committed Jun 19, 2021
1 parent 2b179a1 commit cf24ad5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ To use Blade, you simply have to include it as a dependency and shade it into yo
If you make any changes or improvements to the project, please consider making a pull request to merge your changes back into the upstream project.
This project is in its early stages, if you find any issues please open an issue.

This project follows [Semantic Versioning](https://semver.org/).

## Using Blade

Maven
Expand All @@ -21,7 +23,7 @@ Maven
<dependency>
<groupId>com.github.vaperion</groupId>
<artifactId>blade</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand All @@ -36,7 +38,7 @@ allprojects {
}
dependencies {
implementation 'com.github.vaperion:blade:1.1.0'
implementation 'com.github.vaperion:blade:1.2.0'
}
```

Expand Down Expand Up @@ -64,6 +66,14 @@ public class ExamplePlugin extends JavaPlugin {
}
```

Overriding bukkit commands:
```java
Blade.of()
...
.overrideCommands(true)
...;
```

Setting a custom tab completer:
```java
Blade.of()
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.vaperion</groupId>
<artifactId>blade</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit cf24ad5

Please sign in to comment.