📚 Add JavaDoc link

This commit is contained in:
Alexander Söderberg 2020-10-05 17:45:33 +02:00
parent ec233fcc20
commit cd274fd032
No known key found for this signature in database
GPG key ID: FACEA5B0F4C1BF80

View file

@ -70,7 +70,8 @@ The code is based on a (W.I.P) paper that can be found [here](https://github.com
- **cloud-minecraft/cloud-cloudburst**: Cloudburst v1.0.0+ implementation of cloud - **cloud-minecraft/cloud-cloudburst**: Cloudburst v1.0.0+ implementation of cloud
## links ## links
- JavaDoc: https://javadoc.commandframework.cloud/
- Discord: https://discord.gg/KxkjDVg - Discord: https://discord.gg/KxkjDVg
## develop & build ## develop & build
@ -155,13 +156,13 @@ with conflicting dependencies:
**gradle**: **gradle**:
```groovy ```groovy
repositories { repositories {
maven { url = 'https://mvn.intellectualsites.com/content/repositories/snapshots' } maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' }
} }
``` ```
```groovy ```groovy
dependencies { dependencies {
implementation 'cloud.commandframework:cloud-PLATFORM:0.2.0-SNAPSHOT' implementation 'cloud.commandframework:cloud-PLATFORM:1.0.0-SNAPSHOT'
} }
``` ```