Skip to content

Commit

Permalink
feat(plugins): New plugin info fields (#3794)
Browse files Browse the repository at this point in the history
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
robzienert and mergify[bot] committed Jul 10, 2020
1 parent 486293e commit cf77c45
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ public class PluginInfo {
private String description;
private String provider;
@Nonnull private List<Release> releases;
private String homepage;
private Repository repository;

@Data
public static class Release {
Expand All @@ -44,4 +46,10 @@ public static class Release {
private boolean preferred;
private String lastModifiedBy;
}

@Data
public static class Repository {
private String type;
private String url;
}
}

0 comments on commit cf77c45

Please sign in to comment.