-
Notifications
You must be signed in to change notification settings - Fork 41
Add support for maven requests #791
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
Merged
Merged
Conversation
This file contains hidden or 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
Codecov Report
@@ Coverage Diff @@
## main #791 +/- ##
==========================================
+ Coverage 77.79% 77.92% +0.13%
==========================================
Files 29 31 +2
Lines 1477 1545 +68
==========================================
+ Hits 1149 1204 +55
- Misses 328 341 +13
Continue to review full report at Codecov.
|
tiainen
reviewed
Jun 21, 2022
mseabornIBM
previously approved these changes
Jun 22, 2022
tiainen
approved these changes
Jun 23, 2022
johanvos
approved these changes
Jun 23, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Fixes pyrsia #781
This PR adds support for Maven requests by adding a new route and processing the artifacts accordingly.
Any Maven client could add a repository like:
and then requests dependencies from that repository.
A unit test is included, but it doesn't show the full end-to-end integration with a Maven client.
This requires extra steps that are not included in this PR.
Let's say we have a Java project that can be published to Maven local or Central, creating the artifact
test:test:1.0
.The files that are installed under
~/.m2/repository/test/test/1.0
are:The first step will be adding those files to the transparency log.
for each file:
main.rs
:For instance, like this:
In a Java project, add the dependency and repository:
when building the project, note that the dependency is retrieved:
and also check the pyrsia logs:
Screenshots (optional)
PR Checklist
Code Contributions
cargo build --all-targets
successfully.cargo test --workspace
and everything passes.rustup update
.