-
Notifications
You must be signed in to change notification settings - Fork 2
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
feat: bungee support & fixed migrations running without data set #241
base: master
Are you sure you want to change the base?
Conversation
… an error because migration credentials aren't set
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the PR. I have some small change requests, otherwise looks good :)
Also please adjust the readme to include a reference to the new bungeecord support.
build.gradle
Outdated
@@ -61,6 +63,7 @@ dependencies { | |||
|
|||
api 'io.ebean:ebean:12.12.0' | |||
api 'io.ebean:ebean-querybean:12.12.1' | |||
compileOnly "net.md-5:bungeecord-api:1.17-R0.1-SNAPSHOT" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please make this use the implementation
keyword instead of the old compileOnly
?
|
||
import net.md_5.bungee.api.plugin.Plugin; | ||
|
||
/** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove the unneeded comment. Source control will show the author and date.
build.gradle
Outdated
@@ -61,6 +63,7 @@ dependencies { | |||
|
|||
api 'io.ebean:ebean:12.12.0' | |||
api 'io.ebean:ebean-querybean:12.12.1' | |||
compileOnly "net.md-5:bungeecord-api:1.17-R0.1-SNAPSHOT" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also please use the mcVersion
variable instead of hard coding the version in the dependency.
@@ -0,0 +1,4 @@ | |||
name: EbeanWrapper | |||
version: 1.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The version should be handled by the semantic-release plugin in the update-version.sh
script. But I can also add this later.
The commit messages must also be updated to match the semantic versioning pattern. |
Hey, sorry I will make the changes soon! |
Is it fine now or what naming pattern do you mean? Also fixed the other things apart from the update-version.sh change. |
The tests and build are failing. Once fixed I will merge the PR. |
13 refactored a few things, so that will have to be done at a different time
No description provided.