- Builds
- WorldEdit (
version/7.3.x
) - Build #7108
WorldEdit Build #7108
This is not a stable download!
We recommend the use of released versions whenever possible.
View Stable DownloadsProject | WorldEdit |
---|---|
Status | SUCCESS |
Branch | version/7.3.x |
Number | #7108-dece49b |
Date | 8 days ago |
Artifacts
worldedit-bukkit-7.3.12-SNAPSHOT-dist.jar(5883.35 kBytes)
worldedit-cli-7.3.12-SNAPSHOT-dist.jar(22301.24 kBytes)
worldedit-fabric-mc1.21.5-7.3.12-SNAPSHOT-dist.jar(5252.89 kBytes)
worldedit-mod-7.3.12-SNAPSHOT-dist.jar(6513.4 kBytes)
worldedit-neoforge-mc1.21.5-7.3.12-SNAPSHOT-dist.jar(4587.43 kBytes)
worldedit-sponge-api15-7.3.12-SNAPSHOT-dist.jar(3406.17 kBytes)
Changes
ID | Summary | Committer | Date |
---|---|---|---|
dece49b5 | Configure PublishingExtension for WorldEdit Sponge (#2761) Currently, sponge api aren't be published to the maven repository (only the `pom`s are): https://maven.enginehub.org/repo/com/sk89q/worldedit/worldedit-sponge/7.4.0-SNAPSHOT/ Looks like the `worldedit-sponge` is just not configuring publishing: - Sponge (No `configure<PublishingExtension> `) - https://github.com/EngineHub/WorldEdit/blob/version/7.3.x/worldedit-sponge/build.gradle.kts - Bukkit (configures it) - https://github.com/EngineHub/WorldEdit/blob/version/7.3.x/worldedit-bukkit/build.gradle.kts#L110 - Fabric (configures it) - https://github.com/EngineHub/WorldEdit/blob/version/7.3.x/worldedit-fabric/build.gradle.kts#L71 Presumably since `worldedit-sponge` is missing: ```kt configure<PublishingExtension> { publications.named<MavenPublication>("maven") { from(components["java"]) } } ``` It doesn't get the information from the `java-library` plugin to actually include the jar, so it just includes the pom. Unfortunately I obviously don't have permission to publish the enginehub repository, but perhaps someone could take a look to see if this fix would work? | tyhdefu | 8 days ago |