Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Upgrade paper-api to 1.21.4-R0.1-SNAPSHOT #286

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '17'
distribution: 'zulu'
java-version: '21'
- name: Set RELEASE_VERSION from tag
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Print version
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '17'
distribution: 'zulu'
java-version: '21'
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload artifact
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,16 +170,17 @@ This doesn't support all statistics in the list because they are provided by the

| Plugin version | Min Minecraft version | Min Java version |
|----------------|-----------------------|------------------|
| 4.x.x | 1.21.0 | 21 |
| 3.x.x | 1.17.1 | 17 |
| 1.0.0 - 2.x.x | 1.11.x | 11 |

#### Notes

- Java 17 is required for the latest version of the plugin.
- Java 21 is required for the latest version of the plugin.
- There is a known [issue](https://github.com/sladkoff/minecraft-prometheus-exporter/issues/197) with Azul JVM.
- There is currently rudimentary support for Folia servers. Only selected metrics are supported.
- The plugin has been tested recently on
- Minecraft 1.20.1
- Minecraft 1.20.1
- Minecraft 1.20.4

## Plugin Integration
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<packaging>jar</packaging>

<properties>
<paper-api.version>1.20.4-R0.1-SNAPSHOT</paper-api.version>
<paper-api.version>1.21.4-R0.1-SNAPSHOT</paper-api.version>
<jetty.version>12.0.16</jetty.version>
<prometheus-client.version>0.16.0</prometheus-client.version>
<json-path.version>2.9.0</json-path.version>
Expand Down Expand Up @@ -218,7 +218,7 @@
</execution>
</executions>
<configuration>
<release>17</release>
<release>21</release>
</configuration>
</plugin>

Expand Down
Loading