1 2 3 4 5 6 7 8 9 10 11 12
//version 8: springframework dep is too new to run on j6 //CONF: lombok.addNullAnnotations = spring import lombok.With; class WithPlain { @lombok.With int i; @With final int foo; WithPlain(int i, int foo) { this.i = i; this.foo = foo; } }