mirror of
https://github.com/BentoBoxWorld/BSkyBlock.git
synced 2024-12-27 17:17:35 +01:00
Release 1.15.2 (#441)
* Version 1.15.1 * Remove unused comments. * Reference correct BentoBox API * Remove sonar plugin. Now use Github actions. * Change plugin name to Pladdon * Add informative messages to the options. (#440) `create-and-link-portals` works only if allow-nether is enabled. `create-obsidian-platform` works only if allow-end is enabled. * Allow BentoBox 1.16.5 version * Version 1.15.2 Co-authored-by: BONNe <bonne@bonne.id.lv>
This commit is contained in:
parent
e8047b5868
commit
6d3aab0762
10
pom.xml
10
pom.xml
@ -58,14 +58,14 @@
|
||||
<!-- Non-minecraft related dependencies -->
|
||||
<powermock.version>2.0.9</powermock.version>
|
||||
<!-- More visible way how to change dependency versions -->
|
||||
<spigot.version>1.17-R0.1-SNAPSHOT</spigot.version>
|
||||
<bentobox.version>1.17.0</bentobox.version>
|
||||
<spigot.version>1.17.1-R0.1-SNAPSHOT</spigot.version>
|
||||
<bentobox.version>1.17.1</bentobox.version>
|
||||
<!-- Revision variable removes warning about dynamic version -->
|
||||
<revision>${build.version}-SNAPSHOT</revision>
|
||||
<!-- Do not change unless you want different name for local builds. -->
|
||||
<build.number>-LOCAL</build.number>
|
||||
<!-- This allows to change between versions. -->
|
||||
<build.version>1.15.1</build.version>
|
||||
<build.version>1.15.2</build.version>
|
||||
<!-- Sonar Cloud -->
|
||||
<sonar.projectKey>BentoBoxWorld_BSkyBlock</sonar.projectKey>
|
||||
<sonar.organization>bentobox-world</sonar.organization>
|
||||
@ -244,8 +244,6 @@
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>3.3.0</version>
|
||||
<configuration>
|
||||
<source>8</source>
|
||||
<show>private</show>
|
||||
<failOnError>false</failOnError>
|
||||
<additionalJOption>-Xdoclint:none</additionalJOption>
|
||||
<!-- To compile with Java 11, this tag may be required -->
|
||||
@ -261,7 +259,7 @@
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>3.0.1</version>
|
||||
|
@ -191,6 +191,7 @@ public class Settings implements WorldSettings {
|
||||
@ConfigComment("This option indicates if nether portals should be linked via dimensions.")
|
||||
@ConfigComment("Option will simulate vanilla portal mechanics that links portals together")
|
||||
@ConfigComment("or creates a new portal, if there is not a portal in that dimension.")
|
||||
@ConfigComment("This option requires `allow-nether=true` in server.properties.")
|
||||
@ConfigEntry(path = "world.nether.create-and-link-portals", since = "1.14.4")
|
||||
private boolean makeNetherPortals = false;
|
||||
|
||||
@ -206,6 +207,7 @@ public class Settings implements WorldSettings {
|
||||
|
||||
@ConfigComment("This option indicates if obsidian platform in the end should be generated")
|
||||
@ConfigComment("when player enters the end world.")
|
||||
@ConfigComment("This option requires `allow-end=true` in bukkit.yml.")
|
||||
@ConfigEntry(path = "world.end.create-obsidian-platform", since = "1.14.4")
|
||||
private boolean makeEndPortals = false;
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
name: BSkyBlock
|
||||
main: world.bentobox.bskyblock.BSkyBlock
|
||||
version: ${version}${build.number}
|
||||
api-version: 1.17
|
||||
api-version: 1.16.5
|
||||
metrics: true
|
||||
icon: "OAK_SAPLING"
|
||||
repository: "BentoBoxWorld/BSkyBlock"
|
||||
|
@ -119,6 +119,7 @@ world:
|
||||
# This option indicates if nether portals should be linked via dimensions.
|
||||
# Option will simulate vanilla portal mechanics that links portals together
|
||||
# or creates a new portal, if there is not a portal in that dimension.
|
||||
# This option requires `allow-nether=true` in server.properties.
|
||||
# Added since 1.14.4.
|
||||
create-and-link-portals: false
|
||||
end:
|
||||
@ -130,6 +131,7 @@ world:
|
||||
islands: true
|
||||
# This option indicates if obsidian platform in the end should be generated
|
||||
# when player enters the end world.
|
||||
# This option requires `allow-end=true` in bukkit.yml.
|
||||
# Added since 1.14.4.
|
||||
create-obsidian-platform: false
|
||||
# /!\ This feature is experimental and might not work as expected or might not work at all.
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: BSkyBlock
|
||||
name: Pladdon
|
||||
main: world.bentobox.bskyblock.BSkyBlockPladdon
|
||||
version: ${version}
|
||||
api-version: 1.17
|
||||
|
Loading…
Reference in New Issue
Block a user