-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
#4554 fix Class not found exception in maven server #4613
Conversation
Signed-off-by: Even Vidolob <evidolob@codenvy.com>
} catch (ArtifactResolutionException e) { | ||
MavenServerContext.getLogger().info(e); | ||
} catch (ArtifactResolutionException ignored) { | ||
//we need ignore exception, it's some times has class that client doesn't has |
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.
may be system.error.println()?
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.
All sdtout/stderr of the maven sever is logged by client, but 'ArtifactResolutionException' is normal when maven can't find or download artifact, so I not sure that this exception need to be logged.
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.
up2you
Build success. https://ci.codenvycorp.com/job/che-pullrequests-build/2312/ |
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.
It definitely fixes issue #4554
…se-che#4613) Signed-off-by: Even Vidolob <evidolob@codenvy.com>
What does this PR do?
Fixes
ClassNotFoundException
when download maven artifact sources.What issues does this PR fix or reference?
#4554