8000 Maven plugin for dumping dependencies (cross-repo navigation) by antonsviridov-src · Pull Request #735 · sourcegraph/scip-java · GitHub
[go: up one dir, main page]

Skip to content

Maven plugin for dumping dependencies (cross-repo navigation) #735

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 20 commits into from
Aug 9, 2024
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix artifact rendering in error message
  • Loading branch information
antonsviridov-src committed Aug 7, 2024
commit 46d43ab5e09b4ea21bfd8da9bf4ff08b572ea1c8
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@ public void execute() throws MojoExecutionException, MojoFailureException {

private String summariseArtifact(Artifact artifact) {
return String.format(
"%:%:%", artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion());
"%s:%s:%s", artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion());
}
}
Loading
0