Skip to content

Commit

Permalink
feat(plugins): Add required constructors for Jackson serialization (s…
Browse files Browse the repository at this point in the history
  • Loading branch information
srekapalli authored and mergify[bot] committed Jan 21, 2020
1 parent d123a14 commit 2e78355
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@

import java.util.List;
import javax.annotation.Nonnull;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class PluginInfo {
@Nonnull private String id;
Expand All @@ -30,6 +34,8 @@ public class PluginInfo {
@Nonnull private List<Release> releases;

@Data
@NoArgsConstructor
@AllArgsConstructor
public static class Release {
private String version;
private String date;
Expand Down

0 comments on commit 2e78355

Please sign in to comment.