Will be reverted after merging https://gerrit.fd.io/r/#/c/3181/
Change-Id: Iab9e7d8a1e79cd96f84842071c62148aa9748b6f
Signed-off-by: Marek Gradzki <[email protected]>
<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>
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 {
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);
}