# Lombok
Because we do not want to write big domain classes with all their getters, setters, and constructors, we want to make the code more readable by using [Lombok](https://projectlombok.org/).
Please include them as a dependency in the maven projects by adding this in the `pom.xml`:
```xml
...
1.18.24
...
...
org.projectlombok
lombok
${lombok.version}
provided
...
```