BUG-6020: Implement Ribsupport for extensions
[bgpcep.git] / bgp / evpn / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          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     <modelVersion>4.0.0</modelVersion>
14     <scm>
15         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
16         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
17         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
18         <tag>HEAD</tag>
19     </scm>
20     <parent>
21         <artifactId>bgp-parent</artifactId>
22         <groupId>org.opendaylight.bgpcep</groupId>
23         <version>0.6.0-SNAPSHOT</version>
24     </parent>
25
26     <artifactId>bgp-evpn</artifactId>
27     <description>BGP Evpn</description>
28     <packaging>bundle</packaging>
29     <name>${project.artifactId}</name>
30     <prerequisites>
31         <maven>3.0.4</maven>
32     </prerequisites>
33
34     <dependencies>
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>yang-data-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>yang-data-impl</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>bgp-concepts</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>bgp-rib-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>bgp-rib-spi</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>bgp-rib-spi</artifactId>
58             <scope>test</scope>
59             <type>test-jar</type>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>bgp-parser-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>bgp-parser-spi</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>bgp-bmp-api</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.osgi</groupId>
75             <artifactId>org.osgi.core</artifactId>
76             <scope>provided</scope>
77         </dependency>
78         <!-- test scope dependencies -->
79         <dependency>
80             <groupId>junit</groupId>
81             <artifactId>junit</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>config-manager</artifactId>
86             <type>test-jar</type>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.controller</groupId>
90             <artifactId>config-manager</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>${project.groupId}</groupId>
95             <artifactId>bgp-rib-spi</artifactId>
96             <type>test-jar</type>
97         </dependency>
98         <dependency>
99             <groupId>${project.groupId}</groupId>
100             <artifactId>bgp-parser-spi</artifactId>
101             <type>test-jar</type>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.yangtools</groupId>
105             <artifactId>mockito-configuration</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.mockito</groupId>
109             <artifactId>mockito-core</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.controller</groupId>
114             <artifactId>sal-binding-broker-impl</artifactId>
115             <scope>test</scope>
116         </dependency>
117     </dependencies>
118     <build>
119         <plugins>
120             <plugin>
121                 <groupId>org.opendaylight.yangtools</groupId>
122                 <artifactId>yang-maven-plugin</artifactId>
123             </plugin>
124             <plugin>
125                 <groupId>org.apache.felix</groupId>
126                 <artifactId>maven-bundle-plugin</artifactId>
127                 <extensions>true</extensions>
128                 <configuration>
129                     <instructions>
130                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
131                     </instructions>
132                 </configuration>
133             </plugin>
134         </plugins>
135     </build>
136     <!--
137     Maven Site Configuration
138
139     The following configuration is necessary for maven-site-plugin to
140     correctly identify the correct deployment path for OpenDaylight Maven
141     sites.
142     -->
143     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
144
145     <distributionManagement>
146         <site>
147             <id>opendaylight-site</id>
148             <url>${nexus.site.url}/${project.artifactId}/</url>
149         </site>
150     </distributionManagement>
151 </project>