We're attempting to implement SandwichStyle immutables and are running into issues accessing the with methods. The With interface is sometimes not able to be found during our builds. We're unable to find what causes the interface to not be generated. Renaming the file seems to help at first, but after a few builds the interface is no longer generated.
This is the style we're using
@Style( get = {"is*", "get*", "has*"}, init = "set*", optionalAcceptNullable = true, forceJacksonPropertyNames = false, visibility = ImplementationVisibility.SAME, depluralize = true, strictBuilder = true, jdkOnly = true, passAnnotations = {ImmutableInherited.class}, throwForInvalidImmutableState = InvalidImmutableStateException.class )