Bump versions by x.(y+1).z for next dev cycle
[bgpcep.git] / bgp / config-loader-impl / 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>binding-parent</artifactId>
16         <version>0.9.0-SNAPSHOT</version>
17         <relativePath>../../binding-parent</relativePath>
18     </parent>
19
20     <artifactId>bgp-config-loader-impl</artifactId>
21     <description>BGP Initial configuration Loader</description>
22     <packaging>bundle</packaging>
23     <name>${project.artifactId}</name>
24
25     <dependencies>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>bgp-config-loader-spi</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.yangtools</groupId>
32             <artifactId>yang-data-codec-xml</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.mdsal</groupId>
36             <artifactId>mdsal-dom-api</artifactId>
37         </dependency>
38         <!-- test scope dependencies -->
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>bgp-openconfig-api</artifactId>
42             <scope>test</scope>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.mdsal.model</groupId>
46             <artifactId>ietf-inet-types-2013-07-15</artifactId>
47             <scope>test</scope>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.mdsal.model</groupId>
51             <artifactId>ietf-yang-types-20130715</artifactId>
52             <scope>test</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal.model</groupId>
56             <artifactId>ietf-interfaces</artifactId>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>junit</groupId>
61             <artifactId>junit</artifactId>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.mockito</groupId>
66             <artifactId>mockito-core</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>mockito-configuration</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.controller</groupId>
74             <artifactId>sal-binding-broker-impl</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>yang-test-util</artifactId>
80         </dependency>
81     </dependencies>
82
83     <build>
84         <plugins>
85             <plugin>
86                 <groupId>org.apache.maven.plugins</groupId>
87                 <artifactId>maven-jar-plugin</artifactId>
88                 <executions>
89                     <execution>
90                         <phase>package</phase>
91                         <goals>
92                             <goal>test-jar</goal>
93                         </goals>
94                     </execution>
95                 </executions>
96             </plugin>
97         </plugins>
98     </build>
99
100     <scm>
101         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
102         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
103         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
104         <tag>HEAD</tag>
105     </scm>
106
107     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
108     <distributionManagement>
109         <site>
110             <id>opendaylight-site</id>
111             <url>${nexus.site.url}/${project.artifactId}/</url>
112         </site>
113     </distributionManagement>
114 </project>