mirror of
https://github.com/CarmJos/UserPrefix.git
synced 2026-06-04 23:43:29 +08:00
2.1.6 补充介绍,优化部署密钥配置。
This commit is contained in:
@@ -29,5 +29,5 @@ jobs:
|
|||||||
- name: "Deploy"
|
- name: "Deploy"
|
||||||
run: mvn -B deploy --file pom.xml
|
run: mvn -B deploy --file pom.xml
|
||||||
env:
|
env:
|
||||||
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
|
MAVEN_USERNAME: ${{ github.repository_owner }}
|
||||||
MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
||||||
@@ -27,7 +27,7 @@ jobs:
|
|||||||
- name: "Package"
|
- name: "Package"
|
||||||
run: mvn -B package --file pom.xml
|
run: mvn -B package --file pom.xml
|
||||||
env:
|
env:
|
||||||
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
|
MAVEN_USERNAME: ${{ github.repository_owner }}
|
||||||
MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
||||||
- name: "Target Stage"
|
- name: "Target Stage"
|
||||||
run: mkdir staging && cp target/*.jar staging
|
run: mkdir staging && cp target/*.jar staging
|
||||||
|
|||||||
@@ -6,20 +6,20 @@
|
|||||||
|
|
||||||
<groupId>cc.carm.plugin</groupId>
|
<groupId>cc.carm.plugin</groupId>
|
||||||
<artifactId>userprefix</artifactId>
|
<artifactId>userprefix</artifactId>
|
||||||
<version>2.1.5</version>
|
<version>2.1.6</version>
|
||||||
|
|
||||||
<name>用户前缀系统</name>
|
<name>UserPrefix</name>
|
||||||
<description>轻便、高效、实时的用户前缀系统。</description>
|
<description>轻便、高效、实时的用户前缀系统。</description>
|
||||||
<url>https://github.com/CarmJos/UserPrefix</url>
|
<url>https://github.com/CarmJos/UserPrefix</url>
|
||||||
|
|
||||||
<issueManagement>
|
<issueManagement>
|
||||||
<system>GitHub Issues</system>
|
<system>GitHub Issues</system>
|
||||||
<url>https://github.com/CarmJos/UserPrefix/issues</url>
|
<url>${project.url}/issues</url>
|
||||||
</issueManagement>
|
</issueManagement>
|
||||||
|
|
||||||
<ciManagement>
|
<ciManagement>
|
||||||
<system>GitHub Actions</system>
|
<system>GitHub Actions</system>
|
||||||
<url>https://github.com/CarmJos/UserPrefix/actions/workflows/maven.yml</url>
|
<url>${project.url}/actions/workflows/maven.yml</url>
|
||||||
</ciManagement>
|
</ciManagement>
|
||||||
|
|
||||||
<developers>
|
<developers>
|
||||||
@@ -27,13 +27,18 @@
|
|||||||
<id>CarmJos</id>
|
<id>CarmJos</id>
|
||||||
<name>Carm Jos</name>
|
<name>Carm Jos</name>
|
||||||
<email>carm@carm.cc</email>
|
<email>carm@carm.cc</email>
|
||||||
|
<url>https://work.carm.cc</url>
|
||||||
<roles>
|
<roles>
|
||||||
<role>Main Developer</role>
|
<role>Main Developer</role>
|
||||||
</roles>
|
</roles>
|
||||||
<url>https://work.carm.cc</url>
|
|
||||||
</developer>
|
</developer>
|
||||||
</developers>
|
</developers>
|
||||||
|
|
||||||
|
<organization>
|
||||||
|
<name>YourCraft你的世界</name>
|
||||||
|
<url>https://www.ycraft.cn/</url>
|
||||||
|
</organization>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
<name>GNU General Public License v3.0</name>
|
<name>GNU General Public License v3.0</name>
|
||||||
@@ -60,11 +65,6 @@
|
|||||||
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
<!-- <repository>-->
|
|
||||||
<!-- <id>lss233-repo</id>-->
|
|
||||||
<!-- <url>https://crystal.app.lss233.com/repositories/minecraft</url>-->
|
|
||||||
<!-- </repository>-->
|
|
||||||
|
|
||||||
<repository>
|
<repository>
|
||||||
<id>oss-repo</id>
|
<id>oss-repo</id>
|
||||||
<url>https://oss.sonatype.org/content/groups/public/</url>
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
<repository>
|
<repository>
|
||||||
<id>github</id>
|
<id>github</id>
|
||||||
<name>GitHub Packages</name>
|
<name>GitHub Packages</name>
|
||||||
<url>https://maven.pkg.github.com/CarmJos/UserPrefix</url>
|
<url>https://maven.pkg.github.com/CarmJos/${project.name}</url>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
<repository>
|
<repository>
|
||||||
<id>github</id>
|
<id>github</id>
|
||||||
<name>GitHub Packages</name>
|
<name>GitHub Packages</name>
|
||||||
<url>https://maven.pkg.github.com/CarmJos/UserPrefix</url>
|
<url>https://maven.pkg.github.com/CarmJos/${project.name}</url>
|
||||||
</repository>
|
</repository>
|
||||||
</distributionManagement>
|
</distributionManagement>
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
main: cc.carm.plugin.userprefix.Main
|
main: cc.carm.plugin.userprefix.Main
|
||||||
name: UserPrefix
|
name: ${project.name}
|
||||||
version: ${project.version}
|
version: ${project.version}
|
||||||
authors:
|
authors:
|
||||||
- Carm
|
- Carm
|
||||||
- YourCraft
|
- ${project.organization.name}
|
||||||
- SakuraGame
|
- SakuraGame
|
||||||
website: "https://github.com/CarmJos/UserPrefix"
|
website: ${project.url}
|
||||||
|
description: ${project.description}
|
||||||
|
|
||||||
depend:
|
depend:
|
||||||
- LuckPerms
|
- LuckPerms
|
||||||
softdepend:
|
softdepend:
|
||||||
|
|||||||
Reference in New Issue
Block a user