aboutsummaryrefslogtreecommitdiffstats
path: root/src/vppinfra/test_flowhash_template.c
diff options
context:
space:
mode:
authorDave Barach <dave@barachs.net>2020-04-01 14:34:39 -0400
committerDamjan Marion <dmarion@me.com>2020-04-01 19:49:02 +0000
commit9076789779c5a038ec17936130a556703c234fa8 (patch)
treedf7f2824e5805fbe61261ddff57e292a45df85d0 /src/vppinfra/test_flowhash_template.c
parent5da10c4c5501d40366df451703c2ffa3993be8cf (diff)
vppinfra: add tw_timer_2t_2w_512sl variant
Type: feature Signed-off-by: Dave Barach <dave@barachs.net> Change-Id: I72cacfb5696dca74335f31415c0df795467615a5
Diffstat (limited to 'src/vppinfra/test_flowhash_template.c')
0 files changed, 0 insertions, 0 deletions
#fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <groupId>io.fd.hc2vpp.common</groupId>
        <artifactId>vpp-impl-parent</artifactId>
        <version>1.17.07-SNAPSHOT</version>
        <relativePath>../../vpp-common/vpp-impl-parent</relativePath>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <groupId>io.fd.hc2vpp.bgp</groupId>
    <artifactId>bgp-inet</artifactId>
    <name>${project.artifactId}</name>
    <version>1.17.07-SNAPSHOT</version>

    <dependencies>
        <!-- Honeycomb infrastructure -->
        <dependency>
            <groupId>io.fd.honeycomb</groupId>
            <artifactId>bgp-translate-api</artifactId>
            <version>${project.version}</version>
        </dependency>
        <!-- BGP api -->
        <dependency>
            <groupId>org.opendaylight.bgpcep</groupId>
            <artifactId>bgp-inet</artifactId>
            <version>${bgpcep.version}</version>
        </dependency>
        <!-- Translation -->
        <dependency>
            <groupId>io.fd.hc2vpp.common</groupId>
            <artifactId>vpp-translate-utils</artifactId>
        </dependency>
        <!-- DI -->
        <dependency>
            <groupId>com.google.inject</groupId>
            <artifactId>guice</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.inject.extensions</groupId>
            <artifactId>guice-multibindings</artifactId>
        </dependency>

        <!-- test dependencies -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>io.fd.hc2vpp.common</groupId>
            <artifactId>vpp-translate-test</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>