Bump versions to 0.20.5-SNAPSHOT
[bgpcep.git] / bgp / path-selection-mode / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 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 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <modelVersion>4.0.0</modelVersion>
14     <parent>
15         <groupId>org.opendaylight.bgpcep</groupId>
16         <artifactId>bgpcep-parent</artifactId>
17         <version>0.20.5-SNAPSHOT</version>
18         <relativePath>../../parent</relativePath>
19     </parent>
20
21     <artifactId>bgp-path-selection-mode</artifactId>
22     <description>BGP Path Selection Mode</description>
23     <packaging>bundle</packaging>
24     <name>${project.artifactId}</name>
25
26     <properties>
27         <odlparent.dependency.enforce>false</odlparent.dependency.enforce>
28     </properties>
29
30     <dependencies>
31         <dependency>
32             <groupId>${project.groupId}</groupId>
33             <artifactId>bgp-parser-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>bgp-rib-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>bgp-rib-spi</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>bgp-parser-spi</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>bgp-parser-impl</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>bgp-concepts</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
57             <artifactId>rfc6991-ietf-inet-types</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.yangtools</groupId>
61             <artifactId>concepts</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.yangtools</groupId>
65             <artifactId>yang-common</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>yang-data-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.yangtools</groupId>
73             <artifactId>yang-data-impl</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.mdsal</groupId>
77             <artifactId>yang-binding</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>com.google.guava</groupId>
81             <artifactId>guava</artifactId>
82         </dependency>
83
84         <!-- test scope dependencies -->
85         <dependency>
86             <groupId>org.opendaylight.yangtools</groupId>
87             <artifactId>mockito-configuration</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.bgpcep</groupId>
91             <artifactId>bgp-inet</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.mdsal</groupId>
96             <artifactId>mdsal-binding-dom-adapter</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.mdsal</groupId>
101             <artifactId>mdsal-binding-dom-adapter</artifactId>
102             <type>test-jar</type>
103             <scope>test</scope>
104         </dependency>
105     </dependencies>
106
107     <build>
108         <plugins>
109             <plugin>
110                 <groupId>org.apache.felix</groupId>
111                 <artifactId>maven-bundle-plugin</artifactId>
112                 <extensions>true</extensions>
113                 <configuration>
114                     <instructions>
115                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
116                         <Export-Package>
117                             org.opendaylight.protocol.bgp.mode.*,
118                             ;-split-package:=error
119                         </Export-Package>
120                     </instructions>
121                 </configuration>
122             </plugin>
123             <plugin>
124                 <artifactId>maven-jar-plugin</artifactId>
125                 <executions>
126                     <execution>
127                         <goals>
128                             <goal>test-jar</goal>
129                         </goals>
130                     </execution>
131                 </executions>
132             </plugin>
133             <plugin>
134                 <artifactId>maven-source-plugin</artifactId>
135                 <executions>
136                     <execution>
137                         <goals>
138                             <goal>test-jar-no-fork</goal>
139                         </goals>
140                     </execution>
141                 </executions>
142             </plugin>
143         </plugins>
144     </build>
145
146     <scm>
147         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
148         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
149         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
150         <tag>HEAD</tag>
151     </scm>
152 </project>