Disable NSH plugin due to CI issues
authorMarek Gradzki <[email protected]>
Thu, 29 Sep 2016 11:41:55 +0000 (13:41 +0200)
committerMarek Gradzki <[email protected]>
Thu, 29 Sep 2016 11:41:58 +0000 (13:41 +0200)
Will be reverted after merging https://gerrit.fd.io/r/#/c/3181/

Change-Id: Iab9e7d8a1e79cd96f84842071c62148aa9748b6f
Signed-off-by: Marek Gradzki <[email protected]>
vpp-integration/minimal-distribution/pom.xml
vpp-integration/minimal-distribution/src/main/java/io/fd/honeycomb/vpp/integration/distro/Main.java

index 7e1aa02..a107278 100644 (file)
       <artifactId>lisp2vpp</artifactId>
       <version>${lisp.version}</version>
     </dependency>
-    <dependency>
-      <groupId>io.fd.honeycomb.vppnsh</groupId>
-      <artifactId>vppnsh-impl</artifactId>
-      <version>${vppnsh.version}</version>
-    </dependency>
+    <!--<dependency>-->
+      <!--<groupId>io.fd.honeycomb.vppnsh</groupId>-->
+      <!--<artifactId>vppnsh-impl</artifactId>-->
+      <!--<version>${vppnsh.version}</version>-->
+    <!--</dependency>-->
   </dependencies>
 </project>
index 04377c3..f4fbdb1 100644 (file)
@@ -21,7 +21,6 @@ import com.google.inject.Module;
 import io.fd.honeycomb.lisp.LispModule;
 import io.fd.honeycomb.translate.v3po.V3poModule;
 import io.fd.honeycomb.vpp.distro.VppCommonModule;
-import io.fd.honeycomb.vppnsh.impl.VppNshModule;
 import java.util.List;
 
 public class Main {
@@ -33,7 +32,7 @@ public class Main {
         sampleModules.add(new VppCommonModule());
         sampleModules.add(new V3poModule());
         sampleModules.add(new LispModule());
-        sampleModules.add(new VppNshModule());
+//        sampleModules.add(new VppNshModule());
 
         io.fd.honeycomb.infra.distro.Main.init(sampleModules);
     }