diff options
Diffstat (limited to 'vpp-integration/minimal-distribution')
-rw-r--r-- | vpp-integration/minimal-distribution/pom.xml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/vpp-integration/minimal-distribution/pom.xml b/vpp-integration/minimal-distribution/pom.xml index 96abc6958..29a3970c0 100644 --- a/vpp-integration/minimal-distribution/pom.xml +++ b/vpp-integration/minimal-distribution/pom.xml @@ -66,12 +66,13 @@ io.fd.hc2vpp.dhcp.DhcpModule, io.fd.hc2vpp.policer.PolicerModule, io.fd.hc2vpp.mpls.MplsModule, - // io.fd.hc2vpp.vppnsh.impl.VppNshModule, <!-- Nsh module by default disabled, because it needs vpp-nsh plugin, which is not part of vpp codebase.--> - // io.fd.hc2vpp.vppioam.impl.VppIoamModule, + // io.fd.hc2vpp.vppnsh.impl.VppNshModule, <!-- iOAM module by default disabled, because it needs ioam plugin (not part of vpp codebase.)--> + // io.fd.hc2vpp.vppioam.impl.VppIoamModule, + <!-- Bgp modules disabled by default, because it BGP northbound interface is not enabled by default --> // io.fd.hc2vpp.bgp.inet.BgpInetModule - <!-- BgpInetModule by default disabled, because it BGP northbound interface is not enabled by default --> + // io.fd.hc2vpp.bgp.prefix.sid.BgpPrefixSidModule </distribution.modules> </properties> @@ -179,5 +180,10 @@ <artifactId>mpls-impl</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>io.fd.hc2vpp.bgp</groupId> + <artifactId>bgp-prefix-sid</artifactId> + <version>${hc2vpp.bgp.version}</version> + </dependency> </dependencies> </project> |