Skip to content

Commit 27a9bcb

Browse files
authored
Merge pull request #365 from BentoBoxWorld/develop
Release 1.15
2 parents 6260a3c + db16529 commit 27a9bcb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+3440
-2819
lines changed

pom.xml

+13-18
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@
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.20.1-R0.1-SNAPSHOT</spigot.version>
62-
<bentobox.version>1.24.0-SNAPSHOT</bentobox.version>
61+
<spigot.version>1.20.4-R0.1-SNAPSHOT</spigot.version>
62+
<bentobox.version>2.0.0-SNAPSHOT</bentobox.version>
6363
<level.version>2.6.2</level.version>
6464
<bank.version>1.3.0</bank.version>
6565
<!-- Revision variable removes warning about dynamic version -->
6666
<revision>${build.version}-SNAPSHOT</revision>
6767
<!-- Do not change unless you want different name for local builds. -->
6868
<build.number>-LOCAL</build.number>
6969
<!-- This allows to change between versions. -->
70-
<build.version>1.14.2</build.version>
70+
<build.version>1.15.0</build.version>
7171
<!-- SonarCloud -->
7272
<sonar.projectKey>BentoBoxWorld_AOneBlock</sonar.projectKey>
7373
<sonar.organization>bentobox-world</sonar.organization>
@@ -292,26 +292,19 @@
292292
--add-opens java.base/java.math=ALL-UNNAMED
293293
--add-opens java.base/java.io=ALL-UNNAMED
294294
--add-opens java.base/java.util=ALL-UNNAMED
295-
--add-opens
296-
java.base/java.util.stream=ALL-UNNAMED
295+
--add-opens java.base/java.util.stream=ALL-UNNAMED
297296
--add-opens java.base/java.text=ALL-UNNAMED
298-
--add-opens
299-
java.base/java.util.regex=ALL-UNNAMED
300-
--add-opens
301-
java.base/java.nio.channels.spi=ALL-UNNAMED
297+
--add-opens java.base/java.util.regex=ALL-UNNAMED
298+
--add-opens java.base/java.nio.channels.spi=ALL-UNNAMED
302299
--add-opens java.base/sun.nio.ch=ALL-UNNAMED
303300
--add-opens java.base/java.net=ALL-UNNAMED
304-
--add-opens
305-
java.base/java.util.concurrent=ALL-UNNAMED
301+
--add-opens java.base/java.util.concurrent=ALL-UNNAMED
306302
--add-opens java.base/sun.nio.fs=ALL-UNNAMED
307303
--add-opens java.base/sun.nio.cs=ALL-UNNAMED
308304
--add-opens java.base/java.nio.file=ALL-UNNAMED
309-
--add-opens
310-
java.base/java.nio.charset=ALL-UNNAMED
311-
--add-opens
312-
java.base/java.lang.reflect=ALL-UNNAMED
313-
--add-opens
314-
java.logging/java.util.logging=ALL-UNNAMED
305+
--add-opens java.base/java.nio.charset=ALL-UNNAMED
306+
--add-opens java.base/java.lang.reflect=ALL-UNNAMED
307+
--add-opens java.logging/java.util.logging=ALL-UNNAMED
315308
--add-opens java.base/java.lang.ref=ALL-UNNAMED
316309
--add-opens java.base/java.util.jar=ALL-UNNAMED
317310
--add-opens java.base/java.util.zip=ALL-UNNAMED
@@ -373,7 +366,9 @@
373366
<!-- This is required to prevent Jacoco from adding
374367
synthetic fields to a JavaBean class (causes errors in testing) -->
375368
<exclude>**/*Names*</exclude>
376-
</excludes>
369+
<!-- Prevents the Material is too large to mock error -->
370+
<exclude>org/bukkit/Material*</exclude>
371+
</excludes>
377372
</configuration>
378373
<executions>
379374
<execution>

0 commit comments

Comments
 (0)