Skip to content

Commit

Permalink
fix: maven bug
Browse files Browse the repository at this point in the history
  • Loading branch information
GuyNachshon committed Jul 24, 2023
1 parent 91e7e42 commit 696cf2b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,10 @@ private PackageRequest getPackageRequest(Response response, Context context) thr
throw new RuntimeException(MessageFormat.format("Coordinates are null for {0}", parsedMavenPath));
}

// TODO -> set in package name type version the values
packageName = String.format("%s:%s", coordinates.getGroupId(), coordinates.getArtifactId());
packageVersion = coordinates.getVersion();
packageType = PackageType.MAVEN.getType();

break;
}
case "npm": {
Expand Down

0 comments on commit 696cf2b

Please sign in to comment.