mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 06:21:43 +00:00
bf0de8b678
The jackson dep we need for testing is too new a class file to run on j6, stubbing it out too much effort. Odds we find a bug specifically because this stuff fails on java6/7 are low, and I'm okay with supporting 6/7 a little less well.
8 lines
248 B
Java
8 lines
248 B
Java
//version 8: Jackson deps are at least Java7+.
|
|
@lombok.extern.jackson.Jacksonized
|
|
@lombok.experimental.SuperBuilder
|
|
@com.fasterxml.jackson.databind.annotation.JsonDeserialize
|
|
public class JacksonizedSuperBuilderWithJsonDeserialize {
|
|
int field1;
|
|
}
|