Bump versions by x.(y+1).z for next dev cycle
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>config-parent</artifactId>
16         <version>0.9.0-SNAPSHOT</version>
17         <relativePath>../../config-parent</relativePath>
18     </parent>
19
20     <artifactId>bgp-path-selection-mode</artifactId>
21     <description>BGP Path Selection Mode</description>
22     <packaging>bundle</packaging>
23     <name>${project.artifactId}</name>
24
25
26     <dependencies>
27         <dependency>
28             <groupId>org.opendaylight.controller</groupId>
29             <artifactId>config-api</artifactId>
30         </dependency>
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>org.opendaylight.yangtools</groupId>
45             <artifactId>yang-data-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.yangtools</groupId>
49             <artifactId>yang-data-impl</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>com.google.guava</groupId>
53             <artifactId>guava</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.controller</groupId>
57             <artifactId>sal-broker-impl</artifactId>
58         </dependency>
59         <!-- test scope dependencies -->
60         <dependency>
61             <groupId>org.mockito</groupId>
62             <artifactId>mockito-core</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.yangtools</groupId>
66             <artifactId>mockito-configuration</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>junit</groupId>
70             <artifactId>junit</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.controller</groupId>
74             <artifactId>config-manager</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.controller</groupId>
79             <artifactId>config-manager</artifactId>
80             <type>test-jar</type>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>config-util</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.bgpcep</groupId>
90             <artifactId>bgp-inet</artifactId>
91             <scope>test</scope>
92         </dependency>
93     </dependencies>
94
95     <build>
96         <plugins>
97             <plugin>
98                 <groupId>org.apache.felix</groupId>
99                 <artifactId>maven-bundle-plugin</artifactId>
100                 <extensions>true</extensions>
101                 <configuration>
102                     <instructions>
103                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
104                         <Export-Package>
105                             org.opendaylight.protocol.bgp.mode.*,
106                             org.opendaylight.controller.config.yang.bgp.path.selection.mode.*,
107                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.bgp.path.selection.mode.*
108                             ;-split-package:=error
109                         </Export-Package>
110                     </instructions>
111                 </configuration>
112             </plugin>
113             <plugin>
114                 <groupId>org.apache.maven.plugins</groupId>
115                 <artifactId>maven-jar-plugin</artifactId>
116                 <executions>
117                     <execution>
118                         <phase>package</phase>
119                         <goals>
120                             <goal>test-jar</goal>
121                         </goals>
122                     </execution>
123                 </executions>
124             </plugin>
125         </plugins>
126     </build>
127
128     <scm>
129         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
130         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
131         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
132         <tag>HEAD</tag>
133     </scm>
134
135     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
136     <distributionManagement>
137         <site>
138             <id>opendaylight-site</id>
139             <url>${nexus.site.url}/${project.artifactId}/</url>
140         </site>
141     </distributionManagement>
142 </project>