Skip to content

Commit

Permalink
prevent jsr305 from being bundled
Browse files Browse the repository at this point in the history
  • Loading branch information
jtnord committed Dec 5, 2019
1 parent b7b8086 commit 4ec27e7
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<properties>
<maven.test.version>3.1.0</maven.test.version>
<java.level>8</java.level>
<!-- Flaky tests do not belon gin this project -->
<!-- Flaky tests do not belong gin this project -->
<surefire.rerunFailingTestsCount>0</surefire.rerunFailingTestsCount>
</properties>

Expand Down Expand Up @@ -52,6 +52,18 @@
</license>
</licenses>

<dependencyManagement>
<dependencies>
<dependency>
<!-- spotbugs is provided but this is compile so make sure we do not bundle this junk -->
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jenkins-ci.main</groupId>
Expand Down

0 comments on commit 4ec27e7

Please sign in to comment.