Skip to content

Commit 7b1632e

Browse files
author
David Waltermire
committed
Disabled time-expensive verification checks. These can now be enable using the -PCI maven argument.
1 parent ee33815 commit 7b1632e

File tree

2 files changed

+34
-20
lines changed

2 files changed

+34
-20
lines changed

oss-parent/pom.xml

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -292,22 +292,6 @@
292292
<groupId>org.apache.maven.plugins</groupId>
293293
<artifactId>maven-release-plugin</artifactId>
294294
</plugin>
295-
<plugin>
296-
<groupId>org.apache.maven.plugins</groupId>
297-
<artifactId>maven-checkstyle-plugin</artifactId>
298-
</plugin>
299-
<plugin>
300-
<groupId>org.apache.maven.plugins</groupId>
301-
<artifactId>maven-pmd-plugin</artifactId>
302-
</plugin>
303-
<plugin>
304-
<groupId>com.github.spotbugs</groupId>
305-
<artifactId>spotbugs-maven-plugin</artifactId>
306-
</plugin>
307-
<plugin>
308-
<groupId>org.jacoco</groupId>
309-
<artifactId>jacoco-maven-plugin</artifactId>
310-
</plugin>
311295
</plugins>
312296
</build>
313297
<reporting>
@@ -480,6 +464,29 @@
480464
</plugins>
481465
</build>
482466
</profile>
467+
<profile>
468+
<id>CI</id>
469+
<build>
470+
<plugins>
471+
<plugin>
472+
<groupId>org.apache.maven.plugins</groupId>
473+
<artifactId>maven-checkstyle-plugin</artifactId>
474+
</plugin>
475+
<plugin>
476+
<groupId>org.apache.maven.plugins</groupId>
477+
<artifactId>maven-pmd-plugin</artifactId>
478+
</plugin>
479+
<plugin>
480+
<groupId>com.github.spotbugs</groupId>
481+
<artifactId>spotbugs-maven-plugin</artifactId>
482+
</plugin>
483+
<plugin>
484+
<groupId>org.jacoco</groupId>
485+
<artifactId>jacoco-maven-plugin</artifactId>
486+
</plugin>
487+
</plugins>
488+
</build>
489+
</profile>
483490
<profile>
484491
<id>only-eclipse</id>
485492
<activation>

pom.xml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -648,10 +648,6 @@
648648
<groupId>net.revelc.code.formatter</groupId>
649649
<artifactId>formatter-maven-plugin</artifactId>
650650
</plugin>
651-
<plugin>
652-
<groupId>org.apache.maven.plugins</groupId>
653-
<artifactId>maven-enforcer-plugin</artifactId>
654-
</plugin>
655651
<plugin>
656652
<groupId>org.apache.maven.plugins</groupId>
657653
<artifactId>maven-release-plugin</artifactId>
@@ -759,6 +755,17 @@
759755
</plugins>
760756
</build>
761757
</profile>
758+
<profile>
759+
<id>CI</id>
760+
<build>
761+
<plugins>
762+
<plugin>
763+
<groupId>org.apache.maven.plugins</groupId>
764+
<artifactId>maven-enforcer-plugin</artifactId>
765+
</plugin>
766+
</plugins>
767+
</build>
768+
</profile>
762769
<profile>
763770
<id>deployment</id>
764771
<build>

0 commit comments

Comments
 (0)