Bump versions by x.y.(z+1)
[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.5-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>org.opendaylight.mdsal.model</groupId>
45             <artifactId>yang-ext</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>bgp-concepts</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>bgp-rib-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>bgp-rib-spi</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>bgp-parser-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>bgp-parser-spi</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>bgp-bmp-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.osgi</groupId>
73             <artifactId>org.osgi.core</artifactId>
74             <scope>provided</scope>
75         </dependency>
76         <!-- test scope dependencies -->
77         <dependency>
78             <groupId>junit</groupId>
79             <artifactId>junit</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.controller</groupId>
83             <artifactId>config-manager</artifactId>
84             <type>test-jar</type>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.controller</groupId>
88             <artifactId>config-manager</artifactId>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>${project.groupId}</groupId>
93             <artifactId>bgp-rib-spi</artifactId>
94             <type>test-jar</type>
95         </dependency>
96         <dependency>
97             <groupId>${project.groupId}</groupId>
98             <artifactId>bgp-parser-spi</artifactId>
99             <type>test-jar</type>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.yangtools</groupId>
103             <artifactId>mockito-configuration</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.mockito</groupId>
107             <artifactId>mockito-core</artifactId>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.controller</groupId>
112             <artifactId>sal-binding-broker-impl</artifactId>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>${project.groupId}</groupId>
117             <artifactId>bgp-parser-impl</artifactId>
118             <scope>test</scope>
119         </dependency>
120     </dependencies>
121     <build>
122         <plugins>
123             <plugin>
124                 <groupId>org.opendaylight.yangtools</groupId>
125                 <artifactId>yang-maven-plugin</artifactId>
126             </plugin>
127             <plugin>
128                 <groupId>org.apache.felix</groupId>
129                 <artifactId>maven-bundle-plugin</artifactId>
130                 <extensions>true</extensions>
131                 <configuration>
132                     <instructions>
133                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
134                     </instructions>
135                 </configuration>
136             </plugin>
137         </plugins>
138     </build>
139     <!--
140     Maven Site Configuration
141
142     The following configuration is necessary for maven-site-plugin to
143     correctly identify the correct deployment path for OpenDaylight Maven
144     sites.
145     -->
146     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
147
148     <distributionManagement>
149         <site>
150             <id>opendaylight-site</id>
151             <url>${nexus.site.url}/${project.artifactId}/</url>
152         </site>
153     </distributionManagement>
154 </project>