Version bump. Publish to Sonatype snapshots and fix build script.

This commit is contained in:
Alexander Söderberg 2020-10-04 20:51:48 +02:00
parent c84e906dc8
commit 15dd3abbbb
No known key found for this signature in database
GPG key ID: FACEA5B0F4C1BF80
2 changed files with 27 additions and 14 deletions

View file

@ -83,13 +83,16 @@ Feel free to use this if you want to.
## use
To use `cloud` you will first need to add it as a dependency to your project. Cloud is available from [IntellectualSites](https://intellectualsites.com)' maven repository.
To use `cloud` you will first need to add it as a dependency to your project.
Snapshot builds of Cloud are available through the [Sonatype OSS Snapshot repository](https://oss.sonatype.org/content/repositories/snapshots).
Release builds of Cloud are available throgh the Maven central repository.
**maven**:
```xml
<repository>
<id>intellectualsites-snapshots</id>
<url>https://mvn.intellectualsites.com/content/repositories/snapshots</url>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
```
@ -97,7 +100,7 @@ To use `cloud` you will first need to add it as a dependency to your project. Cl
<dependency>
<groupId>cloud.commandframework</groupId>
<artifactId>cloud-PLATFORM</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<!--
~ Optional: Allows you to use annotated methods
@ -106,7 +109,7 @@ To use `cloud` you will first need to add it as a dependency to your project. Cl
<dependency>
<groupId>cloud.commandframework</groupId>
<artifactId>cloud-annotations</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</dependency>
```