Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-25 02:20:07 +01:00
Update contributing url
Dieser Commit ist enthalten in:
Ursprung
8ba2eb3330
Commit
f479e32b5f
2
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
2
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@ -29,7 +29,7 @@ body:
|
|||||||
description: Which server version version you using? If your server version is not listed, it is not supported. Update to a supported version first.
|
description: Which server version version you using? If your server version is not listed, it is not supported. Update to a supported version first.
|
||||||
multiple: false
|
multiple: false
|
||||||
options:
|
options:
|
||||||
- '1.17.+'
|
- '1.17.1'
|
||||||
- '1.16.5'
|
- '1.16.5'
|
||||||
- '1.15.2'
|
- '1.15.2'
|
||||||
validations:
|
validations:
|
||||||
|
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -16,4 +16,4 @@ You can do so here: https://github.com/IntellectualSites/FastAsyncWorldEdit/issu
|
|||||||
- [] I included all information required in the sections above
|
- [] I included all information required in the sections above
|
||||||
- [] I tested my changes and approved their functionality
|
- [] I tested my changes and approved their functionality
|
||||||
- [] I ensured my changes do not break other parts of the code
|
- [] I ensured my changes do not break other parts of the code
|
||||||
- [] I read and followed the [contribution guidelines](https://github.com/IntellectualSites/FastAsyncWorldEdit/blob/1.16/CONTRIBUTING.md)
|
- [] I read and followed the [contribution guidelines](https://github.com/IntellectualSites/FastAsyncWorldEdit/blob/main/CONTRIBUTING.md)
|
||||||
|
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@ -44,7 +44,7 @@ jobs:
|
|||||||
- name: "Download BuildTools"
|
- name: "Download BuildTools"
|
||||||
run: "wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar"
|
run: "wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar"
|
||||||
- name: "Run BuildTools"
|
- name: "Run BuildTools"
|
||||||
run: "java -jar BuildTools.jar --rev 1.16.5"
|
run: "java -jar BuildTools.jar --rev 1.17.1"
|
||||||
- name: "Clean Build"
|
- name: "Clean Build"
|
||||||
run: "./gradlew clean build sourcesJar javadocJar -x test"
|
run: "./gradlew clean build sourcesJar javadocJar -x test"
|
||||||
- name: Cleanup Gradle Cache
|
- name: Cleanup Gradle Cache
|
||||||
|
@ -38,7 +38,7 @@ You will find:
|
|||||||
* FastAsyncWorldEdit for Bukkit in **worldedit-bukkit/build/libs**
|
* FastAsyncWorldEdit for Bukkit in **worldedit-bukkit/build/libs**
|
||||||
* the CLI version in **worldedit-cli/build/libs**
|
* the CLI version in **worldedit-cli/build/libs**
|
||||||
|
|
||||||
If you want to use FastAsyncWorldEdit, use the `FastAsyncWorldEdit-1.16-<commitHash>` version obtained in **worldedit-bukkit/build/libs**.
|
If you want to use FastAsyncWorldEdit, use the `FastAsyncWorldEdit-1.17-<commitHash>` version obtained in **worldedit-bukkit/build/libs**.
|
||||||
|
|
||||||
(The `-#` version includes FastAsyncWorldEdit + necessary libraries.)
|
(The `-#` version includes FastAsyncWorldEdit + necessary libraries.)
|
||||||
|
|
||||||
|
@ -100,10 +100,9 @@ dependencies {
|
|||||||
implementation("com.massivecraft:mcore:7.0.1") { isTransitive = false }
|
implementation("com.massivecraft:mcore:7.0.1") { isTransitive = false }
|
||||||
implementation("com.bekvon.bukkit.residence:Residence:4.5._13.1") { isTransitive = false }
|
implementation("com.bekvon.bukkit.residence:Residence:4.5._13.1") { isTransitive = false }
|
||||||
implementation("com.palmergames.bukkit:towny:0.84.0.9") { isTransitive = false }
|
implementation("com.palmergames.bukkit:towny:0.84.0.9") { isTransitive = false }
|
||||||
implementation("com.thevoxelbox.voxelsniper:voxelsniper:5.171.0") { isTransitive = false }
|
|
||||||
implementation("com.comphenix.protocol:ProtocolLib:4.7.0") { isTransitive = false }
|
implementation("com.comphenix.protocol:ProtocolLib:4.7.0") { isTransitive = false }
|
||||||
implementation("org.incendo.serverlib:ServerLib:2.2.1")
|
implementation("org.incendo.serverlib:ServerLib:2.2.1")
|
||||||
api("com.plotsquared:PlotSquared-Bukkit:6.0.6-SNAPSHOT")
|
api("com.plotsquared:PlotSquared-Bukkit:6.0.6-SNAPSHOT") { isTransitive = false }
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.named<Copy>("processResources") {
|
tasks.named<Copy>("processResources") {
|
||||||
|
@ -45,7 +45,7 @@ dependencies {
|
|||||||
implementation("com.github.luben:zstd-jni:1.5.0-4")
|
implementation("com.github.luben:zstd-jni:1.5.0-4")
|
||||||
compileOnly("net.fabiozumbi12:redprotect:1.9.6")
|
compileOnly("net.fabiozumbi12:redprotect:1.9.6")
|
||||||
api("com.github.intellectualsites.plotsquared:PlotSquared-API:4.514") { isTransitive = false }
|
api("com.github.intellectualsites.plotsquared:PlotSquared-API:4.514") { isTransitive = false }
|
||||||
api("com.plotsquared:PlotSquared-Core:6.0.6-SNAPSHOT")
|
api("com.plotsquared:PlotSquared-Core:6.0.6-SNAPSHOT") { isTransitive = false }
|
||||||
compileOnlyApi("net.kyori:adventure-api:4.8.0")
|
compileOnlyApi("net.kyori:adventure-api:4.8.0")
|
||||||
compileOnlyApi("net.kyori:adventure-text-minimessage:4.1.0-SNAPSHOT")
|
compileOnlyApi("net.kyori:adventure-text-minimessage:4.1.0-SNAPSHOT")
|
||||||
api("com.intellectualsites.paster:Paster:1.0.1-SNAPSHOT")
|
api("com.intellectualsites.paster:Paster:1.0.1-SNAPSHOT")
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren