ARTEMIS-4466 Disable Features verification on non test profiles

This commit is contained in:
Clebert Suconic 2023-10-23 10:44:19 -04:00 committed by clebertsuconic
parent 13a3e84e78
commit 7c4663a5b6
2 changed files with 4 additions and 0 deletions

View File

@ -117,6 +117,7 @@
<goal>verify</goal>
</goals>
<configuration>
<skip>${skipFeaturesVerification}</skip>
<descriptors>
<descriptor>mvn:org.apache.karaf.features/specs/${karaf.version}/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.features/framework/${karaf.version}/xml/features</descriptor>

View File

@ -203,6 +203,7 @@
<skipJmsTests>true</skipJmsTests>
<skipExtraTests>true</skipExtraTests>
<skipIntegrationTests>true</skipIntegrationTests>
<skipFeaturesVerification>true</skipFeaturesVerification>
<skipIsolatedIntegrationTests>true</skipIsolatedIntegrationTests>
<skipLeakTests>true</skipLeakTests>
<skipSmokeTests>true</skipSmokeTests>
@ -1362,6 +1363,7 @@
<skipJmsTests>false</skipJmsTests>
<skipJoramTests>false</skipJoramTests>
<skipIntegrationTests>false</skipIntegrationTests>
<skipFeaturesVerification>false</skipFeaturesVerification>
<skipIsolatedIntegrationTests>false</skipIsolatedIntegrationTests>
<skipSmokeTests>false</skipSmokeTests>
<skipTimingTests>true</skipTimingTests>
@ -1387,6 +1389,7 @@
integration-tests module tests, see fast-tests profile
in the latter for specific tests it then runs -->
<skipIntegrationTests>false</skipIntegrationTests>
<skipFeaturesVerification>false</skipFeaturesVerification>
<!-- Only a portion of the smoke-tests are run. See the filter
applied in the fast-tests profile under ./tests/smoke-tests -->
<skipSmokeTests>false</skipSmokeTests>