Switch to lombok.With

This replaces the use of lombok.experimental.Wither which is deprecated.

Closes #611
This commit is contained in:
Jens Schauder
2021-04-09 14:04:39 +02:00
parent b5cecf730b
commit d70804b15c
4 changed files with 8 additions and 8 deletions

View File

@@ -18,7 +18,7 @@ package example.springdata.rest.stores;
import static org.springframework.data.mongodb.core.index.GeoSpatialIndexType.*;
import lombok.Value;
import lombok.experimental.Wither;
import lombok.With;
import java.util.UUID;
@@ -34,7 +34,7 @@ import org.springframework.data.mongodb.core.mapping.Document;
* @author Mark Paluch
*/
@Value
@Wither
@With
@Document
public class Store {