[ci skip] some tweaks (#818)

This commit is contained in:
Lennart Lösche 2024-04-02 19:32:03 +02:00 committed by GitHub
parent 806c72984f
commit a185e520e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -12,15 +12,15 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
java: [17,8] java: [8, 11, 17, 21]
fail-fast: true fail-fast: true
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- name: Install Java ${{ matrix.java }} - name: Install Java ${{ matrix.java }}
uses: actions/setup-java@v2 uses: actions/setup-java@v3
with: with:
java-version: ${{ matrix.java }} java-version: ${{ matrix.java }}
distribution: 'adopt' distribution: 'zulu'
- name: patch - name: patch
run: | run: |
git config --global user.email "no-reply@github.com" git config --global user.email "no-reply@github.com"

View File

@ -44,7 +44,7 @@ Waterfall requires **Java 8** or above.
<dependency> <dependency>
<groupId>io.github.waterfallmc</groupId> <groupId>io.github.waterfallmc</groupId>
<artifactId>waterfall-api</artifactId> <artifactId>waterfall-api</artifactId>
<version>1.20-R0.1-SNAPSHOT</version> <version>1.20-R0.3-SNAPSHOT</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
``` ```
@ -62,7 +62,7 @@ repositories {
* Artifact: * Artifact:
```groovy ```groovy
dependencies { dependencies {
compileOnly 'io.github.waterfallmc:waterfall-api:1.20-R0.1-SNAPSHOT' compileOnly 'io.github.waterfallmc:waterfall-api:1.20-R0.3-SNAPSHOT'
} }
``` ```