Skip to content
Merged
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
9 changes: 7 additions & 2 deletions .github/workflows/jitpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,10 @@ jobs:
java-version: '25'
cache: maven

- name: Build API module (mirrors jitpack.yml install command)
run: ./mvnw --batch-mode --no-transfer-progress clean install -pl api -am -Dmaven.test.skip=true
- name: Build and install MockBukkit dev/26.1.1 (mirrors jitpack.yml)
run: |
git clone --depth=1 --branch dev/26.1.1 https://github.com/MockBukkit/MockBukkit.git /tmp/MockBukkit
cd /tmp/MockBukkit && ./gradlew publishToMavenLocal -xtest -xjavadoc

- name: Full build with tests skipped (mirrors jitpack.yml install command)
run: ./mvnw --batch-mode --no-transfer-progress clean install -Dmaven.test.skip=true
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ It runs timed season resets, sends reminder broadcasts, and provides `/season` s
- Optional companion plugin: [EzLifesteal](https://modrinth.com/plugin/ezlifesteal)
- Supported server software: Paper / Bukkit-compatible server
- Requires: Java 25, Minecraft 26.1+
- Plugin version: 2.1.0
- Plugin version: 2.1.1

## Quick setup (server owners)

Expand Down Expand Up @@ -117,7 +117,7 @@ You can consume the API artifact in two ways:
<dependency>
<groupId>com.skyblockexp.lifesteal</groupId>
<artifactId>ezseasons-api</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand All @@ -137,7 +137,7 @@ You can consume the API artifact in two ways:
<dependency>
<groupId>com.github.ez-plugins.EzSeasons</groupId>
<artifactId>ezseasons-api</artifactId>
<version>v2.1.0</version>
<version>v2.1.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.skyblockexp.lifesteal</groupId>
<artifactId>ezseasons-parent</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
</parent>

<artifactId>ezseasons-api</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You can use either GitHub Packages (official) or JitPack.
<dependency>
<groupId>com.skyblockexp.lifesteal</groupId>
<artifactId>ezseasons-api</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand All @@ -61,7 +61,7 @@ You can use either GitHub Packages (official) or JitPack.
<dependency>
<groupId>com.github.ez-plugins.EzSeasons</groupId>
<artifactId>ezseasons-api</artifactId>
<version>v2.1.0</version>
<version>v2.1.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ EzSeasons does **not** require EzLifesteal. It is fully standalone.
## Installation

1. Stop your server.
2. Download `EzSeasons-2.1.0.jar` from [Modrinth](https://modrinth.com/plugin/ezseasons).
2. Download `EzSeasons-2.1.1.jar` from [Modrinth](https://modrinth.com/plugin/ezseasons).
3. Copy the jar into your `plugins/` folder.
4. *(Optional)* Install [EzLifesteal](https://modrinth.com/plugin/ezlifesteal) if you want Lifesteal heart-reset behavior on each season reset.
5. Start the server once. EzSeasons generates `plugins/EzSeasons/config.yml` and the `messages/` folder.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ It schedules timed season resets, broadcasts announcements, sends configurable c
|---|---|
| Minecraft / Paper | 26.1 or later |
| Java | 25 or later |
| Plugin version | 2.1.0 |
| Plugin version | 2.1.1 |

---

Expand Down
4 changes: 3 additions & 1 deletion jitpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ jdk:
- openjdk25

install:
- ./mvnw --batch-mode --no-transfer-progress clean install -pl api -Dmaven.test.skip=true
- git clone --depth=1 --branch dev/26.1.1 https://github.com/MockBukkit/MockBukkit.git /tmp/MockBukkit
- cd /tmp/MockBukkit && ./gradlew publishToMavenLocal -xtest -xjavadoc
- ./mvnw --batch-mode --no-transfer-progress clean install -Dmaven.test.skip=true
2 changes: 1 addition & 1 deletion plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.skyblockexp.lifesteal</groupId>
<artifactId>ezseasons-parent</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
</parent>

<artifactId>ezseasons-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.skyblockexp.lifesteal</groupId>
<artifactId>ezseasons-parent</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
<packaging>pom</packaging>

<name>EzSeasons</name>
Expand Down
Loading