Skip SFT in features-netconf-connector 95/59795/2
authorTom Pantelis <tompantelis@gmail.com>
Fri, 30 Jun 2017 13:51:09 +0000 (09:51 -0400)
committerTom Pantelis <tompantelis@gmail.com>
Fri, 30 Jun 2017 18:09:05 +0000 (18:09 +0000)
odl-netconf-clustered-topology and odl-netconf-topology are mutually
exclusive so running SFT may fail intermittently due to timing. This
will be addressed in a future release of odlparent to disable SFT
for feature-repo-parent by default and we can revert this later
although it doesn't hurt to disable locally.

Change-Id: Id91e36ea857179beba0e4a862ca9ab1821735025
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
features/netconf-connector/features-netconf-connector/pom.xml

index 01ffc85a65c4211133e16c4a211132c1e936ac36..005ab120c6687c952854f2fe8fa1b7d810af42a0 100644 (file)
   <version>1.3.0-SNAPSHOT</version>
   <packaging>feature</packaging>
 
+  <properties>
+    <!-- Skip SFT as some of the features are mutually exclusive, i.e. SFT may fail
+         if certain features are installed together. -->
+    <skip.karaf.featureTest>true</skip.karaf.featureTest>
+  </properties>
+
   <dependencies>
     <dependency>
       <groupId>${project.groupId}</groupId>
@@ -81,4 +87,4 @@
       <classifier>features</classifier>
     </dependency>
   </dependencies>
-</project>
\ No newline at end of file
+</project>