Provide codec Serializer via RibSupport
[bgpcep.git] / bgp / flowspec / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10
11 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.bgpcep</groupId>
17         <artifactId>binding-parent</artifactId>
18         <version>0.10.0-SNAPSHOT</version>
19         <relativePath>../../binding-parent</relativePath>
20     </parent>
21
22     <artifactId>bgp-flowspec</artifactId>
23     <packaging>bundle</packaging>
24     <description>BGP Flow Specification</description>
25     <name>${project.artifactId}</name>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>concepts</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>bgp-concepts</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>bgp-parser-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>bgp-parser-spi</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>bgp-inet</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>bgp-rib-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>bgp-rib-spi</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>util</artifactId>
59         </dependency>
60
61         <dependency>
62             <groupId>org.slf4j</groupId>
63             <artifactId>slf4j-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>com.google.guava</groupId>
67             <artifactId>guava</artifactId>
68         </dependency>
69
70         <dependency>
71             <groupId>org.opendaylight.mdsal</groupId>
72             <artifactId>yang-binding</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.yangtools</groupId>
76             <artifactId>yang-common</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.yangtools</groupId>
80             <artifactId>concepts</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.mdsal.model</groupId>
84             <artifactId>ietf-inet-types-2013-07-15</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.controller</groupId>
88             <artifactId>sal-common-api</artifactId>
89         </dependency>
90
91         <dependency>
92             <groupId>io.netty</groupId>
93             <artifactId>netty-buffer</artifactId>
94         </dependency>
95
96         <dependency>
97             <groupId>org.osgi</groupId>
98             <artifactId>org.osgi.core</artifactId>
99             <scope>provided</scope>
100         </dependency>
101         <dependency>
102             <groupId>${project.groupId}</groupId>
103             <artifactId>bgp-bmp-api</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>${project.groupId}</groupId>
107             <artifactId>bgp-openconfig-api</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>${project.groupId}</groupId>
111             <artifactId>bgp-openconfig-spi</artifactId>
112         </dependency>
113         <!-- test scope dependencies -->
114         <dependency>
115             <groupId>${project.groupId}</groupId>
116             <artifactId>bgp-rib-spi</artifactId>
117             <type>test-jar</type>
118         </dependency>
119         <dependency>
120             <groupId>junit</groupId>
121             <artifactId>junit</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.yangtools</groupId>
125             <artifactId>mockito-configuration</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>org.mockito</groupId>
129             <artifactId>mockito-core</artifactId>
130             <scope>test</scope>
131         </dependency>
132         <dependency>
133             <groupId>${project.groupId}</groupId>
134             <artifactId>bgp-parser-spi</artifactId>
135             <type>test-jar</type>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.controller</groupId>
139             <artifactId>sal-binding-api</artifactId>
140             <scope>test</scope>
141         </dependency>
142         <dependency>
143             <groupId>org.opendaylight.controller</groupId>
144             <artifactId>sal-binding-broker-impl</artifactId>
145             <scope>test</scope>
146             <type>test-jar</type>
147         </dependency>
148         <dependency>
149             <groupId>org.opendaylight.mdsal</groupId>
150             <artifactId>mdsal-binding-dom-adapter</artifactId>
151             <scope>test</scope>
152         </dependency>
153         <dependency>
154             <groupId>org.opendaylight.controller</groupId>
155             <artifactId>sal-binding-broker-impl</artifactId>
156             <scope>test</scope>
157         </dependency>
158     </dependencies>
159
160     <build>
161         <plugins>
162             <plugin>
163                 <groupId>org.apache.maven.plugins</groupId>
164                 <artifactId>maven-checkstyle-plugin</artifactId>
165                 <configuration>
166                     <violationSeverity>warn</violationSeverity>
167                 </configuration>
168             </plugin>
169         </plugins>
170     </build>
171
172     <scm>
173         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
174         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
175         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
176         <tag>HEAD</tag>
177     </scm>
178 </project>