summaryrefslogtreecommitdiffstats
path: root/vpp-integration/minimal-distribution/pom.xml
diff options
context:
space:
mode:
authorSrihari Raghavan <srihari@cisco.com>2016-10-27 15:23:36 +0530
committerSrihari Raghavan <srihari@cisco.com>2016-11-03 18:26:00 +0530
commitde95d2924fc422a8105b87fb07982698c3f4cb1a (patch)
tree07283af2ff19011fec09540bcf2b3135e96a3d0a /vpp-integration/minimal-distribution/pom.xml
parent4540c478f501f2a994100ca90fc7a667c3ae8e79 (diff)
HONEYCOMB-257 - Honeycomb support for in-band OAM (iOAM) path tracing
- Add iOAM module to handle configuration for the iOAM trace VPP plugin - Add iOAM module test to verify add/delete configurations - Reader/Initializers for future, dependent on https://gerrit.fd.io/r/3387 Change-Id: I557604a955771c139165aed7cd9e5716abbac3d1 Signed-off-by: Srihari Raghavan <srihari@cisco.com>
Diffstat (limited to 'vpp-integration/minimal-distribution/pom.xml')
-rw-r--r--vpp-integration/minimal-distribution/pom.xml10
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>