-
Notifications
You must be signed in to change notification settings - Fork 136
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
feat: add maven verification plugin #2380
Merged
laurentsimon
merged 5 commits into
slsa-framework:main
from
AdamKorcz:maven-verification-plugin
Jul 21, 2023
Merged
feat: add maven verification plugin #2380
laurentsimon
merged 5 commits into
slsa-framework:main
from
AdamKorcz:maven-verification-plugin
Jul 21, 2023
Conversation
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
AdamKorcz
requested review from
asraa,
ianlewis,
laurentsimon and
joshuagl
as code owners
July 13, 2023 09:57
AdamKorcz
force-pushed
the
maven-verification-plugin
branch
3 times, most recently
from
July 13, 2023 10:17
bcf909c
to
36082fe
Compare
Signed-off-by: AdamKorcz <[email protected]>
AdamKorcz
force-pushed
the
maven-verification-plugin
branch
from
July 13, 2023 10:19
36082fe
to
fa59653
Compare
...aven/plugins/verification-plugin/src/main/java/io/github/adamkorcz/SlsaVerificationMojo.java
Outdated
Show resolved
Hide resolved
...aven/plugins/verification-plugin/src/main/java/io/github/adamkorcz/SlsaVerificationMojo.java
Show resolved
Hide resolved
...aven/plugins/verification-plugin/src/main/java/io/github/adamkorcz/SlsaVerificationMojo.java
Show resolved
Hide resolved
ianlewis
reviewed
Jul 19, 2023
...aven/plugins/verification-plugin/src/main/java/io/github/adamkorcz/SlsaVerificationMojo.java
Outdated
Show resolved
Hide resolved
...aven/plugins/verification-plugin/src/main/java/io/github/adamkorcz/SlsaVerificationMojo.java
Show resolved
Hide resolved
...aven/plugins/verification-plugin/src/main/java/io/github/adamkorcz/SlsaVerificationMojo.java
Show resolved
Hide resolved
...aven/plugins/verification-plugin/src/main/java/io/github/adamkorcz/SlsaVerificationMojo.java
Outdated
Show resolved
Hide resolved
…ava/io/github/adamkorcz/SlsaVerificationMojo.java Co-authored-by: Ian Lewis <[email protected]> Signed-off-by: AdamKorcz <[email protected]>
Signed-off-by: AdamKorcz <[email protected]>
Signed-off-by: AdamKorcz <[email protected]>
The failing tests look unrelated to this PR. |
laurentsimon
approved these changes
Jul 20, 2023
the failing pre-submits are due to the RC release @ianlewis is going to cut. We can merge after it's cut |
laurentsimon
added a commit
that referenced
this pull request
Jul 21, 2023
This reverts commit 9d7a0ce.
laurentsimon
added a commit
to laurentsimon/slsa-github-generator
that referenced
this pull request
Jul 23, 2023
This reverts commit 9d7a0ce. Signed-off-by: laurentsimon <[email protected]>
enteraga6
pushed a commit
to enteraga6/slsa-github-generator
that referenced
this pull request
Aug 8, 2023
Adds a Maven plugin that makes it easy to verify the provenance files of all dependencies of a Maven-based project. The plugin can either run during the Maven build cycle, or users can invoke it manually from within a project directory. The plugin checks whether the dependencies in a `pom.xml` file are released with provenance attestations, and invokes the [slsa-verifier](https://github.com/slsa-framework/slsa-verifier) against the dependencies that have provenance files. @loosebazooka @laurentsimon --------- Signed-off-by: AdamKorcz <[email protected]> Signed-off-by: AdamKorcz <[email protected]> Co-authored-by: Ian Lewis <[email protected]> Signed-off-by: Noah Elzner <[email protected]>
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.
Adds a Maven plugin that makes it easy to verify the provenance files of all dependencies of a Maven-based project.
The plugin can either run during the Maven build cycle, or users can invoke it manually from within a project directory.
The plugin checks whether the dependencies in a
pom.xml
file are released with provenance attestations, and invokes the slsa-verifier against the dependencies that have provenance files.@loosebazooka @laurentsimon