-
Notifications
You must be signed in to change notification settings - Fork 111
Closed
Labels
recipeRecipe requestedRecipe requested
Description
What problem are you trying to solve?
- Follow up for Set Lombok to provided scope #658
If a maintainer is careless and adds lambok to the classpath, this recipe should exclude it.
Describe the situation before applying the recipe
<dependency>
<groupId>dependency</groupId>
<artifactId>artifact</artifactId>
</dependency>This dependency adds lombok transitively with the compile scope.
Describe the situation after applying the recipe
<dependency>
<groupId>dependency</groupId>
<artifactId>artifact</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>org.projectlombok</groupId>
+ <artifactId>lombok</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
recipeRecipe requestedRecipe requested
Type
Projects
Status
Done