File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8787 <cs .daemon.version>1.0.10</cs .daemon.version>
8888 <cs .jna.version>4.0.0</cs .jna.version>
8989 <cs .checkstyle.version>2.10</cs .checkstyle.version>
90+ <cs .findbugs.version>2.5.3</cs .findbugs.version>
9091 </properties >
9192
9293 <distributionManagement >
444445 </testResources >
445446 <outputDirectory >${basedir} /${cs.target.dir} /classes</outputDirectory >
446447 <testOutputDirectory >${basedir} /${cs.target.dir} /test-classes</testOutputDirectory >
448+ <plugins >
449+ <plugin >
450+ <groupId >org.codehaus.mojo</groupId >
451+ <artifactId >findbugs-maven-plugin</artifactId >
452+ <executions >
453+ <execution >
454+ <id >cloudstack-findbugs</id >
455+ <phase >none</phase >
456+ <goals >
457+ <goal >check</goal >
458+ </goals >
459+ </execution >
460+ </executions >
461+ </plugin >
462+ </plugins >
447463 <pluginManagement >
448464 <plugins >
449465 <plugin >
712728 </formats >
713729 </configuration >
714730 </plugin >
731+ <plugin >
732+ <groupId >org.codehaus.mojo</groupId >
733+ <artifactId >findbugs-maven-plugin</artifactId >
734+ <version >${cs.findbugs.version} </version >
735+ <configuration >
736+ <effort >Max</effort >
737+ <threshold >High</threshold >
738+ <xmlOutput >true</xmlOutput >
739+ <failOnError >false</failOnError >
740+ </configuration >
741+ <executions >
742+ <execution >
743+ <id >cloudstack-findbugs</id >
744+ <goals >
745+ <goal >check</goal >
746+ </goals >
747+ </execution >
748+ </executions >
749+ </plugin >
715750 </plugins >
716751 </pluginManagement >
717752 </build >
771806 <module >vmware-base</module >
772807 </modules >
773808 </profile >
809+ <profile >
810+ <id >enablefindbugs</id >
811+ <build >
812+ <plugins >
813+ <plugin >
814+ <groupId >org.codehaus.mojo</groupId >
815+ <artifactId >findbugs-maven-plugin</artifactId >
816+ <executions >
817+ <execution >
818+ <id >cloudstack-findbugs</id >
819+ <phase >process-classes</phase >
820+ <inherited >true</inherited >
821+ </execution >
822+ </executions >
823+ </plugin >
824+ </plugins >
825+ </build >
826+ </profile >
774827 </profiles >
775828</project >
You can’t perform that action at this time.
0 commit comments