diff options
Diffstat (limited to 'vpp-integration/minimal-distribution')
-rw-r--r-- | vpp-integration/minimal-distribution/pom.xml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/vpp-integration/minimal-distribution/pom.xml b/vpp-integration/minimal-distribution/pom.xml index 0f504ec70..83fee5689 100644 --- a/vpp-integration/minimal-distribution/pom.xml +++ b/vpp-integration/minimal-distribution/pom.xml @@ -35,14 +35,17 @@ <vpp.common.integration.version>1.16.12-SNAPSHOT</vpp.common.integration.version> <vppnsh.version>1.16.12-SNAPSHOT</vppnsh.version> <nat.version>1.16.12-SNAPSHOT</nat.version> + <ioam.version>1.16.12-SNAPSHOT</ioam.version> <distribution.modules> io.fd.honeycomb.vpp.common.integration.VppCommonModule, io.fd.honeycomb.lisp.LispModule, io.fd.honeycomb.translate.v3po.V3poModule, io.fd.honeycomb.nat.NatModule, - // io.fd.honeycomb.vppnsh.impl.VppNshModule + // io.fd.honeycomb.vppnsh.impl.VppNshModule, <!-- Nsh module by default disabled, because it needs vpp-nsh plugin, which is not part of vpp codebase.--> + //io.fd.honeycomb.vppioam.impl.VppIoamModule + <!-- iOAM module by default disabled, because it needs ioam plugin (not part of vpp codebase.)--> </distribution.modules> </properties> @@ -95,5 +98,10 @@ <artifactId>nat2vpp</artifactId> <version>${nat.version}</version> </dependency> + <dependency> + <groupId>io.fd.honeycomb.vppioam</groupId> + <artifactId>vppioam-impl</artifactId> + <version>${ioam.version}</version> + </dependency> </dependencies> </project> |