Skip to content

Commit f6415f6

Browse files
authored
Remove unnecessary test profiles from pom.xml and consolidate performance/load test exclusions (#1692)
1 parent 1dba35e commit f6415f6

File tree

2 files changed

+6
-24
lines changed

2 files changed

+6
-24
lines changed

activemq-unit-tests/pom.xml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -574,30 +574,6 @@
574574
</plugins>
575575
</build>
576576
<profiles>
577-
<profile>
578-
<id>activemq.tests-all</id>
579-
<activation>
580-
<property>
581-
<name>activemq.tests</name>
582-
<value>all</value>
583-
</property>
584-
</activation>
585-
<build>
586-
<plugins>
587-
<plugin>
588-
<artifactId>maven-surefire-plugin</artifactId>
589-
<configuration>
590-
<excludes combine.children="append">
591-
<!-- These are performance tests and take too long to run -->
592-
<exclude>**/perf/*</exclude>
593-
<!-- These are load tests and take too long to run -->
594-
<exclude>**/load/*</exclude>
595-
</excludes>
596-
</configuration>
597-
</plugin>
598-
</plugins>
599-
</build>
600-
</profile>
601577
<profile>
602578
<id>activemq.tests-sanity</id>
603579
<activation>

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -979,6 +979,12 @@
979979
<org.apache.activemq.kahaDB.files.skipMetadataUpdate>true</org.apache.activemq.kahaDB.files.skipMetadataUpdate>
980980
</systemPropertyVariables>
981981
<argLine>-enableassertions ${surefire.argLine} ${maven.surefire.allow.securitymanager}</argLine>
982+
983+
<!-- These are performance/load tests and take too long to run -->
984+
<excludes combine.children="append">
985+
<exclude>**/perf/*</exclude>
986+
<exclude>**/load/*</exclude>
987+
</excludes>
982988
</configuration>
983989
</plugin>
984990
<plugin>

0 commit comments

Comments
 (0)