Skip to content

Commit

Permalink
devonfw#103: fixed intellij and vscode
Browse files Browse the repository at this point in the history
added missing CPE vendors/products
  • Loading branch information
jan-vcapgemini committed Feb 29, 2024
1 parent 30d5bf2 commit 69e1fdd
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,4 +175,16 @@ protected void collectVersionsFromJson(IntellijJsonObject jsonItem, Collection<S

throw new IllegalStateException();
}

@Override
public String getCpeVendor() {

return "jetbrains";
}

@Override
public String getCpeProduct() {

return "intellij idea";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,15 @@ protected String mapVersion(String version) {
}
}

@Override
public String getCpeVendor() {

return "microsoft";
}

@Override
public String getCpeProduct() {

return "visual studio code";
}
}

0 comments on commit 69e1fdd

Please sign in to comment.