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> <goal>verify</goal>
</goals> </goals>
<configuration> <configuration>
<skip>${skipFeaturesVerification}</skip>
<descriptors> <descriptors>
<descriptor>mvn:org.apache.karaf.features/specs/${karaf.version}/xml/features</descriptor> <descriptor>mvn:org.apache.karaf.features/specs/${karaf.version}/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.features/framework/${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> <skipJmsTests>true</skipJmsTests>
<skipExtraTests>true</skipExtraTests> <skipExtraTests>true</skipExtraTests>
<skipIntegrationTests>true</skipIntegrationTests> <skipIntegrationTests>true</skipIntegrationTests>
<skipFeaturesVerification>true</skipFeaturesVerification>
<skipIsolatedIntegrationTests>true</skipIsolatedIntegrationTests> <skipIsolatedIntegrationTests>true</skipIsolatedIntegrationTests>
<skipLeakTests>true</skipLeakTests> <skipLeakTests>true</skipLeakTests>
<skipSmokeTests>true</skipSmokeTests> <skipSmokeTests>true</skipSmokeTests>
@ -1362,6 +1363,7 @@
<skipJmsTests>false</skipJmsTests> <skipJmsTests>false</skipJmsTests>
<skipJoramTests>false</skipJoramTests> <skipJoramTests>false</skipJoramTests>
<skipIntegrationTests>false</skipIntegrationTests> <skipIntegrationTests>false</skipIntegrationTests>
<skipFeaturesVerification>false</skipFeaturesVerification>
<skipIsolatedIntegrationTests>false</skipIsolatedIntegrationTests> <skipIsolatedIntegrationTests>false</skipIsolatedIntegrationTests>
<skipSmokeTests>false</skipSmokeTests> <skipSmokeTests>false</skipSmokeTests>
<skipTimingTests>true</skipTimingTests> <skipTimingTests>true</skipTimingTests>
@ -1387,6 +1389,7 @@
integration-tests module tests, see fast-tests profile integration-tests module tests, see fast-tests profile
in the latter for specific tests it then runs --> in the latter for specific tests it then runs -->
<skipIntegrationTests>false</skipIntegrationTests> <skipIntegrationTests>false</skipIntegrationTests>
<skipFeaturesVerification>false</skipFeaturesVerification>
<!-- Only a portion of the smoke-tests are run. See the filter <!-- Only a portion of the smoke-tests are run. See the filter
applied in the fast-tests profile under ./tests/smoke-tests --> applied in the fast-tests profile under ./tests/smoke-tests -->
<skipSmokeTests>false</skipSmokeTests> <skipSmokeTests>false</skipSmokeTests>