|
18 | 18 | <parent>
|
19 | 19 | <groupId>com.arpnetworking.build</groupId>
|
20 | 20 | <artifactId>arpnetworking-parent-pom</artifactId>
|
21 |
| - <version>1.1.11</version> |
| 21 | + <version>2.0.0</version> |
22 | 22 | <relativePath />
|
23 | 23 | </parent>
|
24 | 24 |
|
|
81 | 81 | <cglib.version>3.2.10</cglib.version>
|
82 | 82 | <client.protocol.version>0.10.1</client.protocol.version>
|
83 | 83 | <fastutil.version>8.2.2</fastutil.version>
|
84 |
| - <findbugs.annotations.version>3.0.1</findbugs.annotations.version> |
| 84 | + <spotbugs.annotations.version>3.1.12</spotbugs.annotations.version> |
85 | 85 | <guava.version>25.1-jre</guava.version>
|
86 | 86 | <guice.version>4.2.2</guice.version>
|
87 | 87 | <jackson.version>2.9.8</jackson.version>
|
|
169 | 169 | <artifactId>maven-checkstyle-plugin</artifactId>
|
170 | 170 | </plugin>
|
171 | 171 | <plugin>
|
172 |
| - <groupId>org.codehaus.mojo</groupId> |
173 |
| - <artifactId>findbugs-maven-plugin</artifactId> |
| 172 | + <groupId>com.github.spotbugs</groupId> |
| 173 | + <artifactId>spotbugs-maven-plugin</artifactId> |
174 | 174 | </plugin>
|
175 | 175 | <plugin>
|
176 | 176 | <groupId>org.apache.maven.plugins</groupId>
|
|
440 | 440 | <groupId>com.arpnetworking.metrics</groupId>
|
441 | 441 | <artifactId>metrics-client</artifactId>
|
442 | 442 | <version>${metrics.client.version}</version>
|
| 443 | + <exclusions> |
| 444 | + <!-- TODO(ville): Remove suppression once findbugs to spotbugs migration is complete --> |
| 445 | + <exclusion> |
| 446 | + <groupId>com.google.code.findbugs</groupId> |
| 447 | + <artifactId>findbugs-annotations</artifactId> |
| 448 | + </exclusion> |
| 449 | + </exclusions> |
443 | 450 | </dependency>
|
444 | 451 | <dependency>
|
445 | 452 | <groupId>com.arpnetworking.metrics.extras</groupId>
|
446 | 453 | <artifactId>apache-http-sink-extra</artifactId>
|
447 | 454 | <version>${metrics.client.http.version}</version>
|
| 455 | + <exclusions> |
| 456 | + <!-- TODO(ville): Remove suppression once findbugs to spotbugs migration is complete --> |
| 457 | + <exclusion> |
| 458 | + <groupId>com.google.code.findbugs</groupId> |
| 459 | + <artifactId>findbugs-annotations</artifactId> |
| 460 | + </exclusion> |
| 461 | + </exclusions> |
448 | 462 | </dependency>
|
449 | 463 | <dependency>
|
450 | 464 | <groupId>com.arpnetworking.metrics.extras</groupId>
|
451 | 465 | <artifactId>incubator-extra</artifactId>
|
452 | 466 | <version>${metrics.client.incubator.version}</version>
|
| 467 | + <exclusions> |
| 468 | + <!-- TODO(ville): Remove suppression once findbugs to spotbugs migration is complete --> |
| 469 | + <exclusion> |
| 470 | + <groupId>com.google.code.findbugs</groupId> |
| 471 | + <artifactId>findbugs-annotations</artifactId> |
| 472 | + </exclusion> |
| 473 | + </exclusions> |
453 | 474 | </dependency>
|
454 | 475 | <dependency>
|
455 | 476 | <groupId>com.arpnetworking.metrics.extras</groupId>
|
456 | 477 | <artifactId>jvm-extra</artifactId>
|
457 | 478 | <version>${metrics.jvm.extra.version}</version>
|
| 479 | + <exclusions> |
| 480 | + <!-- TODO(ville): Remove suppression once findbugs to spotbugs migration is complete --> |
| 481 | + <exclusion> |
| 482 | + <groupId>com.google.code.findbugs</groupId> |
| 483 | + <artifactId>findbugs-annotations</artifactId> |
| 484 | + </exclusion> |
| 485 | + </exclusions> |
458 | 486 | </dependency>
|
459 | 487 | <!-- Google -->
|
460 | 488 | <dependency>
|
|
587 | 615 | <groupId>com.arpnetworking.commons</groupId>
|
588 | 616 | <artifactId>commons</artifactId>
|
589 | 617 | <version>${arpnetworking.commons.version}</version>
|
| 618 | + <exclusions> |
| 619 | + <!-- TODO(ville): Remove suppression once findbugs to spotbugs migration is complete --> |
| 620 | + <exclusion> |
| 621 | + <groupId>com.google.code.findbugs</groupId> |
| 622 | + <artifactId>findbugs-annotations</artifactId> |
| 623 | + </exclusion> |
| 624 | + </exclusions> |
590 | 625 | </dependency>
|
591 | 626 | <dependency>
|
592 | 627 | <groupId>net.sf.oval</groupId>
|
|
610 | 645 | <version>${jsr305.version}</version>
|
611 | 646 | </dependency>
|
612 | 647 | <dependency>
|
613 |
| - <groupId>com.google.code.findbugs</groupId> |
614 |
| - <artifactId>findbugs-annotations</artifactId> |
615 |
| - <version>${findbugs.annotations.version}</version> |
| 648 | + <groupId>com.github.spotbugs</groupId> |
| 649 | + <artifactId>spotbugs-annotations</artifactId> |
| 650 | + <version>${spotbugs.annotations.version}</version> |
616 | 651 | </dependency>
|
617 | 652 | <dependency>
|
618 | 653 | <groupId>org.scala-lang</groupId>
|
|
739 | 774 | <artifactId>generator</artifactId>
|
740 | 775 | <version>${metrics.generator.version}</version>
|
741 | 776 | <scope>test</scope>
|
| 777 | + <exclusions> |
| 778 | + <!-- TODO(ville): Remove suppression once findbugs to spotbugs migration is complete --> |
| 779 | + <exclusion> |
| 780 | + <groupId>com.google.code.findbugs</groupId> |
| 781 | + <artifactId>findbugs-annotations</artifactId> |
| 782 | + </exclusion> |
| 783 | + </exclusions> |
742 | 784 | </dependency>
|
743 | 785 | <dependency>
|
744 | 786 | <groupId>com.arpnetworking.test</groupId>
|
745 | 787 | <artifactId>performance-test</artifactId>
|
746 | 788 | <version>${performance.test.version}</version>
|
747 | 789 | <scope>test</scope>
|
| 790 | + <exclusions> |
| 791 | + <!-- TODO(ville): Remove suppression once findbugs to spotbugs migration is complete --> |
| 792 | + <exclusion> |
| 793 | + <groupId>com.google.code.findbugs</groupId> |
| 794 | + <artifactId>findbugs-annotations</artifactId> |
| 795 | + </exclusion> |
| 796 | + </exclusions> |
748 | 797 | </dependency>
|
749 | 798 | <dependency>
|
750 | 799 | <groupId>com.carrotsearch</groupId>
|
|
0 commit comments