Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
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
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,14 @@ jobs:
- name: Build and install YskLib
run: |
cd YskLib
YSKLIB_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
mvn clean package -DskipTests -Dbuild.number.formatted=-${{ steps.ysklib-commit.outputs.sha }}
JAR_PATH=$(ls target/YskLib-1.*.jar | head -n 1)
mvn install:install-file \
-Dfile="$JAR_PATH" \
-DgroupId=org.yusaki \
-DartifactId=lib \
-Dversion=1.6.4 \
-Dversion=$YSKLIB_VERSION \
-Dpackaging=jar \
-DgeneratePom=true
cd ..
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ MODRINTH.md
docs/

AGENTS.md

.factory/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
LamMailBox lets admins deliver items and rich-text messages to players who don’t need to be online. It’s a lightweight mailbox system for Paper/Folia 1.20+ that works from commands or plugin triggers.

**Latest release:** v1.5.2
**Latest release:** v1.5.3

## Key Features

Expand Down Expand Up @@ -83,7 +83,7 @@ Need examples or deeper guidance? Check the wiki:

* Paper or Folia 1.20+
* Java 21 runtime
* [YskLib](https://github.com/YusakiDev/YskLib/releases) 1.6.4 or above
* [YskLib](https://github.com/YusakiDev/YskLib/releases) 1.6.7 or above

## Support

Expand Down
8 changes: 2 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.yusaki</groupId>
<artifactId>LamMailBox</artifactId>
<version>1.5.2</version>
<version>1.5.3</version>
<packaging>jar</packaging>

<name>LamMailBox</name>
Expand Down Expand Up @@ -87,10 +87,6 @@
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>frep-repo</id>
<url>https://repo.frep.me/repository/maven-public/</url>
</repository>
<repository>
<id>tcoded-releases</id>
<url>https://repo.tcoded.com/releases</url>
Expand All @@ -113,7 +109,7 @@
<dependency>
<groupId>org.yusaki</groupId>
<artifactId>lib</artifactId>
<version>1.6.4</version>
<version>1.6.7</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Loading