-
Notifications
You must be signed in to change notification settings - Fork 11
Add tags support #15
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
Add tags support #15
Conversation
@siilike thanks for contributing, but we have to wait for the specification proposal update to be accepted (arangodb/velocypack#34) before moving forward with the java implementation. |
Specification updated, pull request updated, please review. |
@siilike can you please rebase the PR on master? May you also remove the gradle files? Also I would like to keep only 1 building tool (maven), since maintaining maven and gradle would add unnecessary additional complexity. |
Updated! |
src/main/java/com/arangodb/velocypack/exception/VPackException.java
Outdated
Show resolved
Hide resolved
Updated! |
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.
just 2 minor changes, in general lgtm
src/main/java/com/arangodb/velocypack/exception/VPackException.java
Outdated
Show resolved
Hide resolved
Updated! |
Great, thanks! |
Thank you for the contribution! |
This pull request adds tags support as in arangodb/velocypack#34. A few things might still be missing.
Additionally it adds (basic) Gradle support (would be great to have it even if you don't want to switch from Maven), avoids unnecessary allocation of none Slices and copying in Slice.equals() and Slice.hashCode().
Based on #14.