Skip to content

Commit

Permalink
Merge pull request #1706 from zalando/fix-lombok-dependency-handling
Browse files Browse the repository at this point in the history
Fix the scope for "provided" dependencies
  • Loading branch information
msdousti authored Dec 8, 2023
2 parents 4bb502b + 18bea53 commit 13f2911
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions logbook-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -317,14 +317,20 @@
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<!-- The scope was added to make sure submodules won't override it; see PR 1706 -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gag</groupId>
<artifactId>gag</artifactId>
<!-- The scope was added to make sure submodules won't override it; see PR 1706 -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<!-- The scope was added to make sure submodules won't override it; see PR 1706 -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.zalando</groupId>
Expand Down

0 comments on commit 13f2911

Please sign in to comment.