Skip to content

Commit

Permalink
feat: add support for version field to project metadata #4533 (#4534)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgomer2001 authored Apr 7, 2023
1 parent bc560c9 commit 0eefb90
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public class ProjectMetadata {
private String author;
private String type;
private String description;
private String version;

@JsonProperty("configs")
private Map<String, Object> configHints;
Expand Down Expand Up @@ -48,6 +49,14 @@ public void setDescription(String description) {
this.description = description;
}

public String getVersion() {
return version;
}

public void setVersion(String version) {
this.version = version;
}

public Map<String, Object> getConfigHints() {
return configHints;
}
Expand Down

0 comments on commit 0eefb90

Please sign in to comment.