Skip to content

Commit

Permalink
Bug fix for Maven
Browse files Browse the repository at this point in the history
  • Loading branch information
ragavareddychalapala committed Dec 10, 2024
1 parent b1345a5 commit 7216c11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ArtifactoryUploader/PackageUploadHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -573,12 +573,12 @@ string GetPropertyValue(string propertyName) =>
else if (GetPropertyValue(Dataconstant.Cdx_ProjectType) == "MAVEN")
{
ComponentsToArtifactory components = await GetUnknownPackageinfo(item);
displayPackagesInfo.UnknownPackagesPython.Add(components);
displayPackagesInfo.UnknownPackagesMaven.Add(components);
}
else if (GetPropertyValue(Dataconstant.Cdx_ProjectType) == "PYTHON")
{
ComponentsToArtifactory components = await GetUnknownPackageinfo(item);
displayPackagesInfo.UnknownPackagesMaven.Add(components);
displayPackagesInfo.UnknownPackagesPython.Add(components);
}
else if (GetPropertyValue(Dataconstant.Cdx_ProjectType) == "CONAN")
{
Expand Down

0 comments on commit 7216c11

Please sign in to comment.