BUG-2571 - added parsers for new Extended Communities
[bgpcep.git] / bgp / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13
14     <modelVersion>4.0.0</modelVersion>
15     <scm>
16         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
17         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
18         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
19         <tag>HEAD</tag>
20     </scm>
21     <parent>
22         <groupId>org.opendaylight.bgpcep</groupId>
23         <artifactId>commons.parent</artifactId>
24         <version>0.4.0-SNAPSHOT</version>
25         <relativePath>../commons/parent</relativePath>
26     </parent>
27     <prerequisites>
28         <maven>3.0.4</maven>
29     </prerequisites>
30
31     <artifactId>bgp-parent</artifactId>
32     <description>BGP-related components</description>
33     <packaging>pom</packaging>
34     <name>${project.artifactId}</name>
35
36     <modules>
37         <module>concepts</module>
38         <module>linkstate</module>
39         <module>flowspec</module>
40         <module>parser-api</module>
41         <module>parser-spi</module>
42         <module>parser-impl</module>
43         <module>parser-mock</module>
44         <module>rib-api</module>
45         <module>rib-spi</module>
46         <module>rib-impl</module>
47         <module>rib-mock</module>
48         <module>testtool</module>
49         <module>topology-provider</module>
50         <module>util</module>
51
52         <module>controller-config</module>
53         <module>feature</module>
54
55     </modules>
56
57     <dependencyManagement>
58         <dependencies>
59             <dependency>
60                 <groupId>${project.groupId}</groupId>
61                 <artifactId>bgp-concepts</artifactId>
62                 <version>${project.version}</version>
63             </dependency>
64             <dependency>
65                 <groupId>${project.groupId}</groupId>
66                 <artifactId>bgp-linkstate</artifactId>
67                 <version>${project.version}</version>
68             </dependency>
69             <dependency>
70                 <groupId>${project.groupId}</groupId>
71                 <artifactId>bgp-parser-api</artifactId>
72                 <version>${project.version}</version>
73             </dependency>
74             <dependency>
75                 <groupId>${project.groupId}</groupId>
76                 <artifactId>bgp-parser-spi</artifactId>
77                 <version>${project.version}</version>
78             </dependency>
79             <dependency>
80                 <groupId>${project.groupId}</groupId>
81                 <artifactId>bgp-parser-impl</artifactId>
82                 <version>${project.version}</version>
83             </dependency>
84             <dependency>
85                 <groupId>${project.groupId}</groupId>
86                 <artifactId>bgp-parser-mock</artifactId>
87                 <version>${project.version}</version>
88             </dependency>
89             <dependency>
90                 <groupId>${project.groupId}</groupId>
91                 <artifactId>bgp-rib-api</artifactId>
92                 <version>${project.version}</version>
93             </dependency>
94             <dependency>
95                 <groupId>${project.groupId}</groupId>
96                 <artifactId>bgp-rib-spi</artifactId>
97                 <version>${project.version}</version>
98             </dependency>
99             <dependency>
100                 <groupId>${project.groupId}</groupId>
101                 <artifactId>bgp-rib-impl</artifactId>
102                 <version>${project.version}</version>
103             </dependency>
104             <dependency>
105                 <groupId>${project.groupId}</groupId>
106                 <artifactId>bgp-testtool</artifactId>
107                 <version>${project.version}</version>
108             </dependency>
109             <dependency>
110                 <groupId>${project.groupId}</groupId>
111                 <artifactId>bgp-rib-mock</artifactId>
112                 <version>${project.version}</version>
113             </dependency>
114             <dependency>
115                 <groupId>${project.groupId}</groupId>
116                 <artifactId>bgp-topology-provider</artifactId>
117                 <version>${project.version}</version>
118             </dependency>
119             <dependency>
120                 <groupId>${project.groupId}</groupId>
121                 <artifactId>bgp-util</artifactId>
122                 <version>${project.version}</version>
123             </dependency>
124
125             <!-- Outside of this component -->
126             <dependency>
127                 <groupId>${project.groupId}</groupId>
128                 <artifactId>rsvp-api</artifactId>
129                 <version>${project.version}</version>
130             </dependency>
131             <dependency>
132                 <groupId>${project.groupId}</groupId>
133                 <artifactId>topology-api</artifactId>
134                 <version>${project.version}</version>
135             </dependency>
136         </dependencies>
137     </dependencyManagement>
138
139 </project>