I am trying to use lombok in my application which is based on spring boot and maven configuration.
I have added the dependency:
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.16</version>
<scope>provided</scope>
</dependency>
</dependencies>
in my pom.xml. Also as I am using STS, I have installed Lombok into my sts by running the jar. I am able to use Lombok annotations and use the getters, setters, etc. but I am not able to see my generated classes/methods in target/generated-sources
folder.
Is there a particular reason, why I am not able to see those generated classes and how STS or maven is able to use these generated classes/methods?
Can any one help me understand? And if possible how to view those generated classes/methods?
Note: My source code folder is still src/main/java
only.