Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions misc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-jmx</artifactId>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -186,6 +190,10 @@
<pattern>io.perfmark</pattern>
<shadedPattern>${ratis.thirdparty.shaded.prefix}.io.perfmark</shadedPattern>
</relocation>
<relocation>
<pattern>edu.umd.cs.findbugs.annotations</pattern>
<shadedPattern>${ratis.thirdparty.shaded.prefix}.edu.umd.cs.findbugs.annotations</shadedPattern>
</relocation>
</relocations>
<filters>
<!-- Filter unshaded netty_tcnative libs -->
Expand Down
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@
<shaded.netty.version>4.1.127.Final</shaded.netty.version>
<!--Version of dropwizard to be shaded -->
<shaded.dropwizard.version>4.2.21</shaded.dropwizard.version>
<!--Version of spotbugs to be shaded -->
<shaded.spotbugs.version>4.8.6</shaded.spotbugs.version>

<!-- third party library versions -->
<commons-lang3.version>3.8.1</commons-lang3.version>
Expand Down Expand Up @@ -172,6 +174,11 @@
<artifactId>metrics-jmx</artifactId>
<version>${shaded.dropwizard.version}</version>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<version>${shaded.spotbugs.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down