-
-
Notifications
You must be signed in to change notification settings - Fork 351
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
review fix(MavenLauncher): Improving MavenLauncher dependancy resolution #2112
Merged
Merged
Changes from 30 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
0ead891
add a test for getRoleInParent / getValueByRole consistence
nharrand 819aa1c
fix: MavenLauncher resolve dependancies which version is defined in p…
nharrand 153be0d
Merge branch 'master' of https://github.com/nharrand/spoon
nharrand 95d99d3
Merge branch 'master' of https://github.com/nharrand/spoon
nharrand 991985b
Merge branch 'master' of https://github.com/nharrand/spoon
nharrand fa60f93
feat(MavenLauncher): MavenLauncher now get its classpath from a maven…
nharrand 8fef644
clean(MavenLauncherTest): remove unused import
nharrand 5e03011
Merge branch 'master' into master
nharrand 5a5c2c6
Update MavenLauncherTest.java
nharrand c7ed307
POC MavenLauncher implementation with MavenCli
nharrand 9729941
POC MavenLauncher implementation with MavenCli
nharrand 912325d
merge
nharrand 7a956fe
cleanup(MavenLauncherTest)
nharrand 9d74873
refactor(MavenLauncher): use MavenInvoker
nharrand 869d445
merge
nharrand 78b5aab
set up M2_HOME environement variable in travis
nharrand 98a84d9
revert previous travis changes
nharrand 2ae448b
Update .travis.yml
nharrand 1b5aa49
Add headers
nharrand e7bd6b7
Merge branch 'master' of https://github.com/nharrand/spoon
nharrand b3427ea
debugging travis script jdk10
nharrand fb5c7aa
refactoring, update certificate on travis script for java 10
nharrand eb54db8
stop deleting files before reading them...
nharrand 75fbf98
yet another attempt at fixing travis build with java 10
nharrand e889890
yet another attempt at fixing travis build with java 10
nharrand 6006a54
switch to multi classpath files
nharrand 2f8f42c
merge and checkstyle fixes
nharrand 54befff
this certificate problem is getting annoying
nharrand 51b9200
fail first
nharrand e880745
Post review improvements
nharrand 57af73c
fix some exception handeling, add a reflexive test to check that all …
nharrand File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
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.
Could you explain why you needed this argument?
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.
Yes! So basically it tells
install-jdk.sh
to use the default (the one present in the base conatiner) collection of trusted certificate authority (CA) certificates for java. Without this option, calling maven from java results in SSL errors.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.
ok, can you add a comment on the script please?
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.
Done.