📚 Update README to account for org switch

This commit is contained in:
Alexander Söderberg 2020-10-15 21:19:21 +02:00
parent 7fd7c89882
commit 42d56a4bbe
No known key found for this signature in database
GPG key ID: FACEA5B0F4C1BF80
2 changed files with 12 additions and 12 deletions

View file

@ -5,9 +5,8 @@
# cloud command framework # cloud command framework
![license](https://img.shields.io/github/license/Sauilitired/cloud.svg) ![license](https://img.shields.io/github/license/Incendo/cloud.svg)
![build](https://github.com/Sauilitired/cloud/workflows/Java%20CI%20with%20Maven/badge.svg) ![build](https://github.com/Incendo/cloud/workflows/Java%20CI%20with%20Maven/badge.svg)
[![CodeFactor](https://www.codefactor.io/repository/github/sauilitired/cloud/badge)](https://www.codefactor.io/repository/github/sauilitired/cloud)
[![central](https://maven-badges.herokuapp.com/maven-central/cloud.commandframework/cloud-core/badge.svg)](https://search.maven.org/search?q=cloud.commandframework) [![central](https://maven-badges.herokuapp.com/maven-central/cloud.commandframework/cloud-core/badge.svg)](https://search.maven.org/search?q=cloud.commandframework)
Cloud is a general-purpose Java command dispatcher & framework. It allows programmers to define command chains that are then parsed and invoked from user- Cloud is a general-purpose Java command dispatcher & framework. It allows programmers to define command chains that are then parsed and invoked from user-
@ -94,12 +93,12 @@ The code is based on a (W.I.P) paper that can be found [here](https://github.com
## links ## links
- JavaDoc: https://javadoc.commandframework.cloud/ - JavaDoc: https://javadoc.commandframework.cloud/
- Wiki: https://github.com/Sauilitired/cloud/wiki - Wiki: https://github.com/Incendo/cloud/wiki
- Discord: https://discord.gg/KxkjDVg - Discord: https://discord.gg/aykZu32
## develop & build ## develop & build
To clone the repository, use `git clone https://github.com/Sauilitired/cloud.git`. To clone the repository, use `git clone https://github.com/Incendo/cloud.git`.
To then build it, use `./gradlew clean build`. If you want to build the examples as well, use `./gradlew clean build To then build it, use `./gradlew clean build`. If you want to build the examples as well, use `./gradlew clean build
-Pcompile-examples`. -Pcompile-examples`.
@ -193,7 +192,8 @@ dependencies {
To shade and relocate cloud use [Gradle Shadow](https://github.com/johnrengelman/shadow). To shade and relocate cloud use [Gradle Shadow](https://github.com/johnrengelman/shadow).
Replace `PLATFORM` with your platform of choice. We currently support: `bukkit`, `paper`, `bungee` and `velocity`for minecraft and `jda` and `javacord` for discord. All modules use the same versions. Replace `PLATFORM` with your platform of choice. We currently support: `bukkit`, `paper`, `bungee` and `velocity`for minecraft and `jda` and `javacord` for discord. All modules use the same versions.
More information about the Minecraft specific modules can be found [here](https://github.com/Sauilitired/cloud/tree/master/cloud-minecraft). More information about the Minecraft specific modules can be found [here](https://github
.com/Incendo/cloud/tree/master/cloud-minecraft).
## attributions, links & acknowledgements ## attributions, links & acknowledgements

View file

@ -138,7 +138,7 @@ subprojects {
pom { pom {
name = project.name name = project.name
url = 'https://github.com/Sauilitired/cloud' url = 'https://github.com/Incendo/cloud'
description = project.description description = project.description
developers { developers {
@ -152,7 +152,7 @@ subprojects {
issueManagement { issueManagement {
system = 'GitHub Issues' system = 'GitHub Issues'
url = 'https://github.com/Sauilitired/cloud/issues' url = 'https://github.com/Incendo/cloud/issues'
} }
licenses { licenses {
@ -163,9 +163,9 @@ subprojects {
} }
scm { scm {
connection = 'scm:git@github.com:Sauilitired/cloud.git' connection = 'scm:git@github.com:Incendo/cloud.git'
developerConnection = 'scm:git@github.com:Sauilitired/cloud.git' developerConnection = 'scm:git@github.com:Incendo/cloud.git'
url = 'https://github.com/Sauilitired/cloud/' url = 'https://github.com/Incendo/cloud/'
} }
} }
} }