more java versions & latest version in readme

This commit is contained in:
Lennart Lösche 2023-09-24 11:46:44 +02:00
parent ec971ca8f0
commit ed34d8ddb0
No known key found for this signature in database
GPG Key ID: DE6159961DD84A55
2 changed files with 4 additions and 3 deletions

View File

@ -27,4 +27,4 @@ jobs:
git config --global user.name "Github Actions"
./waterfall p
- name: build
run: mvn clean install javadoc:javadoc -B
run: mvn clean install javadoc:javadoc -B

View File

@ -40,13 +40,14 @@ Waterfall requires **Java 8** or above.
<dependency>
<groupId>io.github.waterfallmc</groupId>
<artifactId>waterfall-api</artifactId>
<version>1.19-R0.1-SNAPSHOT</version>
<version>1.20-R0.2-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
```
**Or alternatively, with Gradle:**
Groovy
* Repository:
```groovy
repositories {
@ -58,7 +59,7 @@ repositories {
* Artifact:
```groovy
dependencies {
compileOnly 'io.github.waterfallmc:waterfall-api:1.19-R0.1-SNAPSHOT'
compileOnly 'io.github.waterfallmc:waterfall-api:1.20-R0.2-SNAPSHOT'
}
```