mirror of
https://github.com/BentoBoxWorld/BSkyBlock.git
synced 2024-12-28 17:27: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 -->
|
<!-- Non-minecraft related dependencies -->
|
||||||
<powermock.version>2.0.9</powermock.version>
|
<powermock.version>2.0.9</powermock.version>
|
||||||
<!-- More visible way how to change dependency versions -->
|
<!-- More visible way how to change dependency versions -->
|
||||||
<spigot.version>1.17-R0.1-SNAPSHOT</spigot.version>
|
<spigot.version>1.17.1-R0.1-SNAPSHOT</spigot.version>
|
||||||
<bentobox.version>1.17.0</bentobox.version>
|
<bentobox.version>1.17.1</bentobox.version>
|
||||||
<!-- Revision variable removes warning about dynamic version -->
|
<!-- Revision variable removes warning about dynamic version -->
|
||||||
<revision>${build.version}-SNAPSHOT</revision>
|
<revision>${build.version}-SNAPSHOT</revision>
|
||||||
<!-- Do not change unless you want different name for local builds. -->
|
<!-- Do not change unless you want different name for local builds. -->
|
||||||
<build.number>-LOCAL</build.number>
|
<build.number>-LOCAL</build.number>
|
||||||
<!-- This allows to change between versions. -->
|
<!-- This allows to change between versions. -->
|
||||||
<build.version>1.15.1</build.version>
|
<build.version>1.15.2</build.version>
|
||||||
<!-- Sonar Cloud -->
|
<!-- Sonar Cloud -->
|
||||||
<sonar.projectKey>BentoBoxWorld_BSkyBlock</sonar.projectKey>
|
<sonar.projectKey>BentoBoxWorld_BSkyBlock</sonar.projectKey>
|
||||||
<sonar.organization>bentobox-world</sonar.organization>
|
<sonar.organization>bentobox-world</sonar.organization>
|
||||||
@ -244,8 +244,6 @@
|
|||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<version>3.3.0</version>
|
<version>3.3.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>8</source>
|
|
||||||
<show>private</show>
|
|
||||||
<failOnError>false</failOnError>
|
<failOnError>false</failOnError>
|
||||||
<additionalJOption>-Xdoclint:none</additionalJOption>
|
<additionalJOption>-Xdoclint:none</additionalJOption>
|
||||||
<!-- To compile with Java 11, this tag may be required -->
|
<!-- To compile with Java 11, this tag may be required -->
|
||||||
@ -261,7 +259,7 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</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.0.1</version>
|
<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("This option indicates if nether portals should be linked via dimensions.")
|
||||||
@ConfigComment("Option will simulate vanilla portal mechanics that links portals together")
|
@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("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")
|
@ConfigEntry(path = "world.nether.create-and-link-portals", since = "1.14.4")
|
||||||
private boolean makeNetherPortals = false;
|
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("This option indicates if obsidian platform in the end should be generated")
|
||||||
@ConfigComment("when player enters the end world.")
|
@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")
|
@ConfigEntry(path = "world.end.create-obsidian-platform", since = "1.14.4")
|
||||||
private boolean makeEndPortals = false;
|
private boolean makeEndPortals = false;
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
name: BSkyBlock
|
name: BSkyBlock
|
||||||
main: world.bentobox.bskyblock.BSkyBlock
|
main: world.bentobox.bskyblock.BSkyBlock
|
||||||
version: ${version}${build.number}
|
version: ${version}${build.number}
|
||||||
api-version: 1.17
|
api-version: 1.16.5
|
||||||
metrics: true
|
metrics: true
|
||||||
icon: "OAK_SAPLING"
|
icon: "OAK_SAPLING"
|
||||||
repository: "BentoBoxWorld/BSkyBlock"
|
repository: "BentoBoxWorld/BSkyBlock"
|
||||||
|
@ -119,6 +119,7 @@ world:
|
|||||||
# This option indicates if nether portals should be linked via dimensions.
|
# This option indicates if nether portals should be linked via dimensions.
|
||||||
# Option will simulate vanilla portal mechanics that links portals together
|
# Option will simulate vanilla portal mechanics that links portals together
|
||||||
# or creates a new portal, if there is not a portal in that dimension.
|
# 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.
|
# Added since 1.14.4.
|
||||||
create-and-link-portals: false
|
create-and-link-portals: false
|
||||||
end:
|
end:
|
||||||
@ -130,6 +131,7 @@ world:
|
|||||||
islands: true
|
islands: true
|
||||||
# This option indicates if obsidian platform in the end should be generated
|
# This option indicates if obsidian platform in the end should be generated
|
||||||
# when player enters the end world.
|
# when player enters the end world.
|
||||||
|
# This option requires `allow-end=true` in bukkit.yml.
|
||||||
# Added since 1.14.4.
|
# Added since 1.14.4.
|
||||||
create-obsidian-platform: false
|
create-obsidian-platform: false
|
||||||
# /!\ This feature is experimental and might not work as expected or might not work at all.
|
# /!\ 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
|
main: world.bentobox.bskyblock.BSkyBlockPladdon
|
||||||
version: ${version}
|
version: ${version}
|
||||||
api-version: 1.17
|
api-version: 1.17
|
||||||
|
Loading…
Reference in New Issue
Block a user