Skip to content

Commit 6d3aab0

Browse files
tastybentoBONNe
andauthored
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 <[email protected]>
1 parent e8047b5 commit 6d3aab0

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

pom.xml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@
5858
<!-- Non-minecraft related dependencies -->
5959
<powermock.version>2.0.9</powermock.version>
6060
<!-- More visible way how to change dependency versions -->
61-
<spigot.version>1.17-R0.1-SNAPSHOT</spigot.version>
62-
<bentobox.version>1.17.0</bentobox.version>
61+
<spigot.version>1.17.1-R0.1-SNAPSHOT</spigot.version>
62+
<bentobox.version>1.17.1</bentobox.version>
6363
<!-- Revision variable removes warning about dynamic version -->
6464
<revision>${build.version}-SNAPSHOT</revision>
6565
<!-- Do not change unless you want different name for local builds. -->
6666
<build.number>-LOCAL</build.number>
6767
<!-- This allows to change between versions. -->
68-
<build.version>1.15.1</build.version>
68+
<build.version>1.15.2</build.version>
6969
<!-- Sonar Cloud -->
7070
<sonar.projectKey>BentoBoxWorld_BSkyBlock</sonar.projectKey>
7171
<sonar.organization>bentobox-world</sonar.organization>
@@ -244,8 +244,6 @@
244244
<artifactId>maven-javadoc-plugin</artifactId>
245245
<version>3.3.0</version>
246246
<configuration>
247-
<source>8</source>
248-
<show>private</show>
249247
<failOnError>false</failOnError>
250248
<additionalJOption>-Xdoclint:none</additionalJOption>
251249
<!-- To compile with Java 11, this tag may be required -->
@@ -261,7 +259,7 @@
261259
</execution>
262260
</executions>
263261
</plugin>
264-
<plugin>
262+
<plugin>
265263
<groupId>org.apache.maven.plugins</groupId>
266264
<artifactId>maven-source-plugin</artifactId>
267265
<version>3.0.1</version>

src/main/java/world/bentobox/bskyblock/Settings.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ public class Settings implements WorldSettings {
191191
@ConfigComment("This option indicates if nether portals should be linked via dimensions.")
192192
@ConfigComment("Option will simulate vanilla portal mechanics that links portals together")
193193
@ConfigComment("or creates a new portal, if there is not a portal in that dimension.")
194+
@ConfigComment("This option requires `allow-nether=true` in server.properties.")
194195
@ConfigEntry(path = "world.nether.create-and-link-portals", since = "1.14.4")
195196
private boolean makeNetherPortals = false;
196197

@@ -206,6 +207,7 @@ public class Settings implements WorldSettings {
206207

207208
@ConfigComment("This option indicates if obsidian platform in the end should be generated")
208209
@ConfigComment("when player enters the end world.")
210+
@ConfigComment("This option requires `allow-end=true` in bukkit.yml.")
209211
@ConfigEntry(path = "world.end.create-obsidian-platform", since = "1.14.4")
210212
private boolean makeEndPortals = false;
211213

src/main/resources/addon.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: BSkyBlock
22
main: world.bentobox.bskyblock.BSkyBlock
33
version: ${version}${build.number}
4-
api-version: 1.17
4+
api-version: 1.16.5
55
metrics: true
66
icon: "OAK_SAPLING"
77
repository: "BentoBoxWorld/BSkyBlock"

src/main/resources/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ world:
119119
# This option indicates if nether portals should be linked via dimensions.
120120
# Option will simulate vanilla portal mechanics that links portals together
121121
# or creates a new portal, if there is not a portal in that dimension.
122+
# This option requires `allow-nether=true` in server.properties.
122123
# Added since 1.14.4.
123124
create-and-link-portals: false
124125
end:
@@ -130,6 +131,7 @@ world:
130131
islands: true
131132
# This option indicates if obsidian platform in the end should be generated
132133
# when player enters the end world.
134+
# This option requires `allow-end=true` in bukkit.yml.
133135
# Added since 1.14.4.
134136
create-obsidian-platform: false
135137
# /!\ This feature is experimental and might not work as expected or might not work at all.

src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: BSkyBlock
1+
name: Pladdon
22
main: world.bentobox.bskyblock.BSkyBlockPladdon
33
version: ${version}
44
api-version: 1.17

0 commit comments

Comments
 (0)