ARTEMIS-4466 Disable Features verification on non test profiles
This commit is contained in:
parent
13a3e84e78
commit
7c4663a5b6
|
@ -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>
|
||||||
|
|
3
pom.xml
3
pom.xml
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue