Skip to content

Commit cdfdc37

Browse files
committed
Skip some phases during static code analysis (qa profile)
QA-696 QA-1115
1 parent dd77768 commit cdfdc37

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed

pom.xml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,16 @@
547547
</parameter>
548548
</configuration>
549549
</plugin>
550+
<plugin>
551+
<groupId>org.apache.felix</groupId>
552+
<artifactId>maven-bundle-plugin</artifactId>
553+
<executions>
554+
<execution>
555+
<id>bundle-manifest</id>
556+
<phase />
557+
</execution>
558+
</executions>
559+
</plugin>
550560
<plugin>
551561
<groupId>org.apache.maven.plugins</groupId>
552562
<artifactId>maven-checkstyle-plugin</artifactId>
@@ -567,6 +577,22 @@
567577
</execution>
568578
</executions>
569579
</plugin>
580+
<plugin>
581+
<artifactId>maven-compiler-plugin</artifactId>
582+
<executions>
583+
<execution>
584+
<id>default-testCompile</id>
585+
<phase />
586+
</execution>
587+
</executions>
588+
</plugin>
589+
<plugin>
590+
<artifactId>maven-failsafe-plugin</artifactId>
591+
<version>${failsafe.version}</version>
592+
<configuration>
593+
<skip>true</skip>
594+
</configuration>
595+
</plugin>
570596
<plugin>
571597
<groupId>org.apache.maven.plugins</groupId>
572598
<artifactId>maven-pmd-plugin</artifactId>
@@ -587,6 +613,39 @@
587613
</execution>
588614
</executions>
589615
</plugin>
616+
<plugin>
617+
<groupId>org.apache.maven.plugins</groupId>
618+
<artifactId>maven-resources-plugin</artifactId>
619+
<version>3.1.0</version>
620+
<executions>
621+
<execution>
622+
<id>default-resources</id>
623+
<phase />
624+
</execution>
625+
<execution>
626+
<id>default-testResources</id>
627+
<phase />
628+
</execution>
629+
</executions>
630+
</plugin>
631+
<plugin>
632+
<artifactId>maven-source-plugin</artifactId>
633+
<version>${maven.source.version}</version>
634+
<configuration>
635+
<skipSource>true</skipSource>
636+
</configuration>
637+
</plugin>
638+
<plugin>
639+
<groupId>org.apache.maven.plugins</groupId>
640+
<artifactId>maven-surefire-plugin</artifactId>
641+
<version>${surefire.version}</version>
642+
<executions>
643+
<execution>
644+
<id>default-test</id>
645+
<phase />
646+
</execution>
647+
</executions>
648+
</plugin>
590649
<plugin>
591650
<groupId>org.codehaus.mojo</groupId>
592651
<artifactId>clirr-maven-plugin</artifactId>

0 commit comments

Comments
 (0)