Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.7.5 #110

Merged
merged 35 commits into from
Jan 20, 2024
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
cf276bb
Version 1.7.3
tastybento Jan 2, 2023
ce0eeae
Add ${argLine} to get jacoco coverage
tastybento Feb 9, 2023
9af8816
Merge branch 'develop' of https://github.com/BentoBoxWorld/Greenhouse…
tastybento Feb 10, 2023
d6df904
Updated Jacoco POM entry
tastybento Feb 10, 2023
9e407e6
Address bugs reported by SonarCloud
tastybento Feb 10, 2023
4351247
Updated ReadMe
tastybento Feb 25, 2023
66270cf
Add max mobs option #99
tastybento Mar 1, 2023
a4fc496
Use updated Bucket event
tastybento Mar 2, 2023
e4bbb70
Added tests to cover #99
tastybento Mar 2, 2023
d2801dc
Fixes help text for user command.
tastybento Mar 10, 2023
95474d6
Fixed maxmobs typo instead of maxmob
tastybento Mar 17, 2023
308dc22
Remove unused imports
tastybento Mar 18, 2023
3740268
Update to new Bukkit Loader
BONNe Mar 26, 2023
ac1d6e6
Remove debug
tastybento Mar 26, 2023
db5ef4d
Create plugin.yml (#106)
BONNe Apr 8, 2023
e6a1cd1
Removed static getInstance usage
tastybento Jun 4, 2023
a2c2975
Version 1.7.4
tastybento Jun 4, 2023
cce4a65
Refactored to reduce complexity
tastybento Jun 4, 2023
3dd9504
Update surefire plugin
tastybento Jun 4, 2023
2eed3dc
Refactored to reduce complexity
tastybento Jun 4, 2023
398c8e9
Minor typos and grammar fixes
tastybento Jun 4, 2023
7e4f076
Reduced complexity
tastybento Jun 4, 2023
e75780e
Refactor to reduce complexity
tastybento Jun 5, 2023
3f4647b
Refactor to reduce complexity
tastybento Jun 5, 2023
605144e
Update Github Action build script
tastybento Jun 24, 2023
02c2135
Added distribution required for Github Action
tastybento Jun 24, 2023
e05e280
Update pom.xml
tastybento Jul 11, 2023
53cb40e
Fixes mob spawning when no maxmob value given.
tastybento Sep 20, 2023
6bc1c5e
Merge branch 'develop' of https://github.com/BentoBoxWorld/Greenhouse…
tastybento Sep 20, 2023
ca4f1a3
Merge branch 'master' into develop
tastybento Sep 20, 2023
a7eeef7
Code clean up.
tastybento Sep 20, 2023
15c2cea
BentoBox 2.0.0
tastybento Nov 12, 2023
8ce5cc0
Update pom.xml 1.7.5
tastybento Jan 13, 2024
3fc14f5
Update to latest Spigot API
tastybento Jan 13, 2024
04a519a
Merge branch 'master' into develop
tastybento Jan 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@
<java.version>17</java.version>
<powermock.version>2.0.9</powermock.version>
<!-- More visible way how to change dependency versions -->
<spigot.version>1.19.3-R0.1-SNAPSHOT</spigot.version>
<bentobox.version>1.21.0</bentobox.version>
<spigot.version>1.20.4-R0.1-SNAPSHOT</spigot.version>
<bentobox.version>2.0.0-SNAPSHOT</bentobox.version>
<!-- Revision variable removes warning about dynamic version -->
<revision>${build.version}-SNAPSHOT</revision>
<!-- This allows to change between versions and snapshots. -->
<build.version>1.7.4</build.version>
<build.version>1.7.5</build.version>
<build.number>-LOCAL</build.number>
<sonar.projectKey>BentoBoxWorld_Greenhouses</sonar.projectKey>
<sonar.organization>bentobox-world</sonar.organization>
Expand Down Expand Up @@ -259,6 +259,8 @@
<!-- This is required to prevent Jacoco from adding
synthetic fields to a JavaBean class (causes errors in testing) -->
<exclude>**/*Names*</exclude>
<!-- Prevents the Material is too large to mock error -->
<exclude>org/bukkit/Material*</exclude>
</excludes>
</configuration>
<executions>
Expand Down