summaryrefslogtreecommitdiffstats
path: root/samples/samples-impl/pom.xml
blob: 1b85efb86a8bf47fc6b2dda73f679a82fbead672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?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.19.04-SNAPSHOT</version>
        <relativePath>../../vpp-common/vpp-impl-parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>samples-impl</artifactId>
    <name>${project.artifactId}</name>
    <version>1.19.04-SNAPSHOT</version>

    <dependencies>
        <!-- Api classes generated from yang model -->
        <dependency>
            <groupId>io.fd.hc2vpp.common</groupId>
            <artifactId>samples-api</artifactId>
            <version>${project.version}</version>
        </dependency>
        <!-- Infrastructure communication interfaces -->
        <dependency>
            <groupId>io.fd.honeycomb</groupId>
            <artifactId>translate-spi</artifactId>
        </dependency>
        <!-- Vpp api java wrapped -->
        <dependency>
            <groupId>io.fd.jvpp</groupId>
            <artifactId>jvpp-core</artifactId>
        </dependency>
        <!-- Infrastructure utils for translation code -->
        <dependency>
            <groupId>io.fd.honeycomb</groupId>
            <artifactId>translate-utils</artifactId>
        </dependency>
        <!-- Jvpp specific utils for translation code -->
        <dependency>
            <groupId>io.fd.hc2vpp.common</groupId>
            <artifactId>vpp-translate-utils</artifactId>
            <version>${project.version}</version>
        </dependency>
        <!-- Generic implementations for communication interfaces-->
        <dependency>
            <groupId>io.fd.honeycomb</groupId>
            <artifactId>translate-impl</artifactId>
        </dependency>
        <!-- Initialization interfaces for infrastructure-->
        <dependency>
            <groupId>io.fd.honeycomb</groupId>
            <artifactId>cfg-init</artifactId>
        </dependency>
        <!-- Google juice injection -->
        <dependency>
            <groupId>com.google.inject</groupId>
            <artifactId>guice</artifactId>
        </dependency>
        <!-- Google juice multibindings -->
        <dependency>
            <groupId>com.google.inject.extensions</groupId>
            <artifactId>guice-multibindings</artifactId>
        </dependency>
        <!-- Configuration injection -->
        <dependency>
            <groupId>net.jmob</groupId>
            <artifactId>guice.conf</artifactId>
        </dependency>
    </dependencies>

</project>