Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix test
  • Loading branch information
ryaneberly committed Jul 19, 2017
1 parent ffd72f2 commit 3334aee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/cflint/config/CFLintPluginInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import com.fasterxml.jackson.annotation.JsonIdentityInfo;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.ObjectIdGenerators;

@XmlRootElement(name = "CFLint-Plugin")
Expand Down Expand Up @@ -234,7 +235,7 @@ public Object getValue() {
return value;
}

@XmlAttribute(name = "value")
@JsonProperty(value="value")
public void setValue(final Object value) {
this.value = value;
}
Expand Down

0 comments on commit 3334aee

Please sign in to comment.