Skip to content

Commit e93399c

Browse files
committed
Move findbugs into profile.
1 parent ee2c9b4 commit e93399c

1 file changed

Lines changed: 22 additions & 19 deletions

File tree

pom.xml

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -373,25 +373,6 @@
373373
<groupId>org.apache.maven.plugins</groupId>
374374
<artifactId>maven-source-plugin</artifactId>
375375
</plugin>
376-
<plugin>
377-
<groupId>org.codehaus.mojo</groupId>
378-
<artifactId>findbugs-maven-plugin</artifactId>
379-
<version>3.0.2</version>
380-
<configuration>
381-
<effort>Max</effort>
382-
<threshold>Low</threshold>
383-
<xmlOutput>true</xmlOutput>
384-
<!-- until all will be fixed -->
385-
<failOnError>false</failOnError>
386-
</configuration>
387-
<executions>
388-
<execution>
389-
<goals>
390-
<goal>check</goal>
391-
</goals>
392-
</execution>
393-
</executions>
394-
</plugin>
395376
</plugins>
396377
</build>
397378

@@ -422,6 +403,9 @@
422403
</profile>
423404
<profile>
424405
<id>docker-java-analyses</id>
406+
<activation>
407+
<activeByDefault>true</activeByDefault>
408+
</activation>
425409
<build>
426410
<plugins>
427411
<plugin>
@@ -447,6 +431,25 @@
447431
</configLocation>
448432
</configuration>
449433
</plugin>
434+
<plugin>
435+
<groupId>org.codehaus.mojo</groupId>
436+
<artifactId>findbugs-maven-plugin</artifactId>
437+
<version>3.0.2</version>
438+
<configuration>
439+
<effort>Max</effort>
440+
<threshold>Low</threshold>
441+
<xmlOutput>true</xmlOutput>
442+
<!-- until all will be fixed -->
443+
<failOnError>false</failOnError>
444+
</configuration>
445+
<executions>
446+
<execution>
447+
<goals>
448+
<goal>check</goal>
449+
</goals>
450+
</execution>
451+
</executions>
452+
</plugin>
450453
</plugins>
451454
</build>
452455
</profile>

0 commit comments

Comments
 (0)