1
mirror of https://github.com/CarmJos/PlayerPrefix.git synced 2026-06-04 09:59:31 +08:00

32 Commits

Author SHA1 Message Date
renovate[bot] 52df3fa4ae Update dependency org.apache.maven.plugins:maven-surefire-plugin to v3.5.5 2026-03-10 08:05:19 +08:00
renovate[bot] f3ed09deec Update actions/upload-artifact action to v7 2026-03-10 08:05:10 +08:00
renovate[bot] 608e80434b Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.6.2 2026-03-10 08:05:02 +08:00
renovate[bot] 2b0942d201 Update actions/upload-artifact action to v6 2026-02-21 00:56:47 +08:00
renovate[bot] f2a5ec546a Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.15.0 2026-02-21 00:56:41 +08:00
renovate[bot] ca15918e52 Update dependency me.clip:placeholderapi to v2.12.2 2026-02-21 00:56:36 +08:00
renovate[bot] a4d7e0153f Update actions/upload-artifact action to v5 2025-12-01 09:31:50 +08:00
renovate[bot] f7e02a00b1 Update dependency me.clip:placeholderapi to v2.11.7 2025-12-01 09:31:43 +08:00
renovate[bot] 5a808b2b9f Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.5.0 2025-12-01 09:31:36 +08:00
renovate[bot] f358987c4c Update actions/checkout action to v6 2025-12-01 09:31:31 +08:00
renovate[bot] 94f8f86418 Update dependency org.apache.maven.plugins:maven-source-plugin to v3.4.0 2025-12-01 09:31:25 +08:00
renovate[bot] 6a8a349ee3 Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.14.1 2025-09-24 09:19:08 +08:00
renovate[bot] 91935882bd Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.6.1 2025-09-14 16:56:34 +08:00
renovate[bot] 4a1382a452 Update dependency org.apache.maven.plugins:maven-surefire-plugin to v3.5.4 2025-09-14 16:56:29 +08:00
renovate[bot] b2880c8fab Update actions/checkout action to v5 2025-08-21 23:31:39 +08:00
renovate[bot] 3c05967d7e Update actions/setup-java action to v5 2025-08-21 23:31:33 +08:00
renovate[bot] 1aa5d2d3b5 Update dependency org.apache.maven.plugins:maven-surefire-plugin to v3.5.3 2025-04-18 10:50:58 +08:00
renovate[bot] 0bbaf484e6 Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.14.0 2025-03-12 04:57:57 +08:00
renovate[bot] 2d12a31764 Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.4.2 2025-01-25 02:28:10 +08:00
renovate[bot] 20a02eff2b Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.6.0 2025-01-25 02:28:02 +08:00
renovate[bot] e23e137a6e Update dependency org.apache.maven.plugins:maven-source-plugin to v3.3.1 2025-01-25 02:27:55 +08:00
renovate[bot] 37e80b554b Update actions/checkout action to v4 2025-01-25 02:27:48 +08:00
renovate[bot] f2a74e0d90 Update actions/setup-java action to v4 2025-01-25 02:27:41 +08:00
renovate[bot] 2c75cd5f0e Update actions/upload-artifact action to v4 2025-01-25 02:27:34 +08:00
renovate[bot] f8c61bc843 Update dependency org.apache.maven.plugins:maven-surefire-plugin to v3 2025-01-25 02:27:31 +08:00
renovate[bot] 127617c4d0 Update dependency me.clip:placeholderapi to v2.11.6 2025-01-24 03:08:10 +08:00
renovate[bot] 2a024e2885 Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.13.0 2025-01-24 03:08:07 +08:00
renovate[bot] 48e8fc7847 Update dependency junit:junit to v4.13.2 2025-01-24 02:14:59 +08:00
renovate[bot] c39836d439 Update dependency org.apache.maven.plugins:maven-surefire-plugin to v2.22.2 2025-01-24 02:14:55 +08:00
renovate[bot] c081f02cb8 Add renovate.json 2025-01-23 23:06:44 +08:00
carm 8d087d3abd Delete deploy.yml 2021-12-15 03:11:33 +08:00
carm ff40d921e7 1.1.1 修复部署错误的问题 2021-10-21 21:38:45 +08:00
5 changed files with 24 additions and 50 deletions
-33
View File
@@ -1,33 +0,0 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Deploy
on:
# 支持手动触发构建
workflow_dispatch:
release:
# 创建release的时候触发
types: [ published ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "Set up JDK"
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
cache: maven
server-id: github
server-username: MAVEN_USERNAME
server-password: MAVEN_TOKEN
- name: "Deploy"
run: mvn -B deploy --file pom.xml
env:
MAVEN_USERNAME: ${{ github.repository_owner }}
MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}}
+3 -3
View File
@@ -14,9 +14,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v6
- name: "Set up JDK" - name: "Set up JDK"
uses: actions/setup-java@v2 uses: actions/setup-java@v5
with: with:
java-version: '11' java-version: '11'
distribution: 'adopt' distribution: 'adopt'
@@ -32,7 +32,7 @@ jobs:
- name: "Target Stage" - name: "Target Stage"
run: mkdir staging && cp target/*.jar staging run: mkdir staging && cp target/*.jar staging
- name: "Upload artifact" - name: "Upload artifact"
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v7
with: with:
name: artifact name: artifact
path: staging path: staging
+10 -10
View File
@@ -5,8 +5,8 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>cc.carm.plugin</groupId> <groupId>cc.carm.plugin</groupId>
<artifactId>PlayerPrefix</artifactId> <artifactId>playerprefix</artifactId>
<version>1.1.0</version> <version>1.1.1</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<properties> <properties>
@@ -15,7 +15,7 @@
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
</properties> </properties>
<name>玩家前缀系统</name> <name>PlayerPrefix</name>
<description>指令操作的轻量玩家前缀管理插件。</description> <description>指令操作的轻量玩家前缀管理插件。</description>
<url>https://github.com/CarmJos/PlayerPrefix</url> <url>https://github.com/CarmJos/PlayerPrefix</url>
@@ -109,14 +109,14 @@
<dependency> <dependency>
<groupId>me.clip</groupId> <groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId> <artifactId>placeholderapi</artifactId>
<version>2.10.9</version> <version>2.12.2</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>4.13</version> <version>4.13.2</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
@@ -128,7 +128,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version> <version>3.15.0</version>
<configuration> <configuration>
<source>1.8</source> <source>1.8</source>
<target>1.8</target> <target>1.8</target>
@@ -139,12 +139,12 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version> <version>3.5.0</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
<version>3.2.0</version> <version>3.4.0</version>
<executions> <executions>
<execution> <execution>
<phase>package</phase> <phase>package</phase>
@@ -157,7 +157,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<version>3.2.3</version> <version>3.6.2</version>
<executions> <executions>
<execution> <execution>
<phase>package</phase> <phase>package</phase>
@@ -184,7 +184,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version> <version>3.5.5</version>
<configuration> <configuration>
<useSystemClassLoader>false</useSystemClassLoader> <useSystemClassLoader>false</useSystemClassLoader>
</configuration> </configuration>
+6
View File
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}
+5 -4
View File
@@ -1,7 +1,10 @@
main: cc.carm.plugin.playerprefix.Main main: cc.carm.plugin.playerprefix.Main
name: ${project.artifactId} name: ${project.name}
version: ${project.version} version: ${project.version}
description: ${project.description}
author: CarmJos
website: ${project.url}
depend: depend:
- ProtocolLib - ProtocolLib
@@ -13,6 +16,4 @@ commands:
aliases: aliases:
- prefix - prefix
author: CarmJos
website: ${project.url}
description: ${project.description}