-
Notifications
You must be signed in to change notification settings - Fork 33
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
Changed @NotNull to Validate.notNull() in Aether.jara #80
Conversation
@amihaiemil Many thanks for the PR, let me find a reviewer for it |
@pinaf please review this PR |
@amihaiemil looks good, just not sure whether we should even have these validations since they were removed in another project. @yegor256 please advise on whether these validations should be removed or whether this solution is fine. |
@amihaiemil let's just remove them at all. see http://www.yegor256.com/2016/01/26/defensive-programming.html |
@pinaf Done. Scope of the validation-api dependency is set to |
@amihaiemil I see. Can't we add |
@pinaf I think that should also do it. I will try as soon as possible, later today. |
@pinaf I tried but you cannot exclude dependencies that are inherited from the pom parent. The |
@amihaiemil agreed, thanks. |
@rultor merge |
@rultor merge |
@rultor deploy now pls |
@amihaiemil @dmarkov Oops, I failed. You can see the full log here (spent 3min)
|
@dmarkov can you let rultor try to deploy again? |
@amihaiemil ask project architect. I'm only deploying once |
@yegor256 This will not be deployed successfully until issue #82 is solved. On other topic: What is the complete workflow? In general, does the PR need to be deployed until the ticket is closed? I'm a bit confused since I have 4 or 5 other open tickets which had their PR merged and closed days ago . |
@amihaiemil deployment is required if you are solving and removing a puzzle |
This PR is for issue #78 . Build under openjdk6 (and oraclejdk6) fails when
javax.validation.constraints.@NotNull
is used for validation, so I usedorg.apache.commons.lang3.Validate.notNull()
instead.