Dedicated provider for BgpNeighbours
[honeycomb.git] / infra / bgp-distribution / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <parent>
7         <groupId>io.fd.honeycomb.common</groupId>
8         <artifactId>minimal-distribution-parent</artifactId>
9         <version>1.17.07-SNAPSHOT</version>
10         <relativePath>../../common/minimal-distribution-parent</relativePath>
11     </parent>
12
13     <modelVersion>4.0.0</modelVersion>
14     <groupId>io.fd.honeycomb</groupId>
15     <artifactId>bgp-distribution</artifactId>
16     <name>${project.artifactId}</name>
17     <version>1.17.07-SNAPSHOT</version>
18
19     <properties>
20         <main.class>io.fd.honeycomb.infra.bgp.distro.Main</main.class>
21         <sonar.skip>true</sonar.skip>
22         <distribution.modules>
23             io.fd.honeycomb.infra.bgp.BgpModule,
24             io.fd.honeycomb.infra.bgp.BgpExtensionsModule,
25             io.fd.honeycomb.infra.bgp.BgpReadersModule,
26             io.fd.honeycomb.infra.bgp.BgpWritersModule,
27             io.fd.honeycomb.infra.bgp.BgpConfigurationModule
28         </distribution.modules>
29     </properties>
30
31     <build>
32         <plugins>
33             <plugin>
34                 <artifactId>maven-compiler-plugin</artifactId>
35             </plugin>
36             <plugin>
37                 <groupId>org.codehaus.gmaven</groupId>
38                 <artifactId>groovy-maven-plugin</artifactId>
39             </plugin>
40             <plugin>
41                 <groupId>org.apache.maven.plugins</groupId>
42                 <artifactId>maven-jar-plugin</artifactId>
43             </plugin>
44             <plugin>
45                 <groupId>org.apache.maven.plugins</groupId>
46                 <artifactId>maven-dependency-plugin</artifactId>
47             </plugin>
48             <plugin>
49                 <artifactId>maven-assembly-plugin</artifactId>
50             </plugin>
51         </plugins>
52     </build>
53
54     <dependencies>
55         <dependency>
56             <groupId>io.fd.honeycomb</groupId>
57             <artifactId>minimal-distribution</artifactId>
58             <version>${project.version}</version>
59         </dependency>
60
61         <!-- ODL-BGP -->
62         <dependency>
63             <groupId>org.opendaylight.bgpcep</groupId>
64             <artifactId>bgp-rib-impl</artifactId>
65             <!-- TODO remove exclusion after bumping to Boron-SR4 -->
66             <exclusions>
67                 <exclusion>
68                     <groupId>org.powermock</groupId>
69                     <artifactId>powermock</artifactId>
70                 </exclusion>
71             </exclusions>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.bgpcep</groupId>
75             <artifactId>bgp-openconfig-impl</artifactId>
76         </dependency>
77         <!-- BGP extensions -->
78         <dependency>
79             <groupId>org.opendaylight.bgpcep</groupId>
80             <artifactId>bgp-evpn</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.bgpcep</groupId>
84             <artifactId>bgp-inet</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.bgpcep</groupId>
88             <artifactId>bgp-labeled-unicast</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.bgpcep</groupId>
92             <artifactId>bgp-linkstate</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.bgpcep</groupId>
96             <artifactId>bgp-l3vpn</artifactId>
97         </dependency>
98
99         <!-- test dependencies -->
100         <dependency>
101             <groupId>junit</groupId>
102             <artifactId>junit</artifactId>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>com.mashape.unirest</groupId>
107             <artifactId>unirest-java</artifactId>
108             <version>1.4.9</version>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>com.jcraft</groupId>
113             <artifactId>jsch</artifactId>
114             <version>0.1.54</version>
115             <scope>test</scope>
116         </dependency>
117     </dependencies>
118 </project>