-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Move bst package to logic #1587
Conversation
@@ -12,6 +12,7 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `# | |||
## [Unreleased] | |||
|
|||
### Changed | |||
- Moved the bst package into logic. For developers: This requires the regeneration of antlr sources, execute: gradlew generateSource |
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.
One could argue if this should be in the change log as it is mainly a code issue. However, as there are some earlier entries like that and there is the need of antlr source regeneration it might just as well stay there.
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.
Perhaps just start the whole entry with "For developers: ..."
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.
@matthiasgeiger: Done. And I will of course squash the commits when merging
LGTM! 👍 |
LGTM - @lenhard And don't forget to squash 😉 |
Moves the
bst
package from root intologic
. This operation is possible without any functional source code change. Moving the package does not break any of our existing dependency tests.However, it requires re-generating the antlr sources (
gradlew generateSource
).Refs: #1579