-
Notifications
You must be signed in to change notification settings - Fork 1
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
Project housecleaning #5
Merged
Merged
Commits on Aug 2, 2020
-
Add .editorconfig and fix minor formatting issues
- missing whitespace - star-imports
Configuration menu - View commit details
-
Copy full SHA for cd633b7 - Browse repository at this point
Copy the full SHA cd633b7View commit details -
Fix javadoc errors, and use doclint
The doclint is set to "all except missing tags". It's a reasonable setting to avoid having to add redundant noise for self-explanatory paramters, types and such.
Configuration menu - View commit details
-
Copy full SHA for f9dc7e9 - Browse repository at this point
Copy the full SHA f9dc7e9View commit details -
Configuration menu - View commit details
-
Copy full SHA for ced2567 - Browse repository at this point
Copy the full SHA ced2567View commit details -
Use strictly pluginManagement for settings versions in order to be able to invoke single plugins and get the same version as specified in the build, as well as configuration. Executions, in addition to plugins part of the default (jar) lifecycle, are configured in build/plugins. Configure versions-maven-plugin to be able to check for newer dependencies/plugin versions Add maven-enforcer-plugin to set minimal Maven version required by configured plugins.
Configuration menu - View commit details
-
Copy full SHA for 21bd421 - Browse repository at this point
Copy the full SHA 21bd421View commit details -
Upgade to JUnit 5 and Hamcrest 2.2
Change tests to being package scoped, and remove unnecessary exception declarations.
Configuration menu - View commit details
-
Copy full SHA for 4afc46c - Browse repository at this point
Copy the full SHA 4afc46cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9fc57ce - Browse repository at this point
Copy the full SHA 9fc57ceView commit details -
Deny unused declared & used but undeclared deps
maven-dependency-plugin analyzes and failes the build if: - code is using a dependency which has been pulled in transitively, but not declared as a dependency. Code used is direct dependency, and must be declared as such. - a dependency has been declared, but the code is actually not using it. Thus, is can be removed (unless it is a runtime dependency, but the nature of this library makes this very unlikely).
Configuration menu - View commit details
-
Copy full SHA for 6945838 - Browse repository at this point
Copy the full SHA 6945838View commit details -
Configuration menu - View commit details
-
Copy full SHA for 05be6a2 - Browse repository at this point
Copy the full SHA 05be6a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for f845d59 - Browse repository at this point
Copy the full SHA f845d59View commit details -
Default build command on Travis is mvn test Reformat .travis.yml in accordance with .editorconfig (2 spaces indent)
Configuration menu - View commit details
-
Copy full SHA for c085638 - Browse repository at this point
Copy the full SHA c085638View commit details -
Travis' default behaviour is to first do mvn install without tests to "install" dependencies, and then execute a normal build with tests. This is to align with the build lifecycle defined by Travis, but it is not necessary for a Maven build, which should do everything it needs by executing the idiomatic mvn clean install. This should even further speed up the build.
Configuration menu - View commit details
-
Copy full SHA for fcdecda - Browse repository at this point
Copy the full SHA fcdecdaView commit details -
Configuration menu - View commit details
-
Copy full SHA for e6fac6d - Browse repository at this point
Copy the full SHA e6fac6dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 514dd52 - Browse repository at this point
Copy the full SHA 514dd52View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.