Skip to content

Commit

Permalink
change scope of jsr305 dependency from "provided" to "compile"
Browse files Browse the repository at this point in the history
it cannot be "provided" because it's not "provided at runtime by JDK or a container".
it's rather a "compile" dependency because it's needed for compilation of user project (at least maven projects).
  • Loading branch information
asolntsev committed Jan 22, 2024
1 parent 53242c5 commit 31d9108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<scope>provided</scope>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down

0 comments on commit 31d9108

Please sign in to comment.