Bump versions by x.(y+1).z for next dev cycle
[bgpcep.git] / bgp / parser-spi / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 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
11 <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">
12
13     <modelVersion>4.0.0</modelVersion>
14     <parent>
15         <groupId>org.opendaylight.bgpcep</groupId>
16         <artifactId>binding-parent</artifactId>
17         <version>0.9.0-SNAPSHOT</version>
18         <relativePath>../../binding-parent</relativePath>
19     </parent>
20
21     <artifactId>bgp-parser-spi</artifactId>
22     <packaging>bundle</packaging>
23     <description>BGP Parser SPI</description>
24     <name>${project.artifactId}</name>
25
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>org.opendaylight.bgpcep</groupId>
30                 <artifactId>bgpcep-parent</artifactId>
31                 <version>0.9.0-SNAPSHOT</version>
32                 <type>pom</type>
33                 <scope>import</scope>
34             </dependency>
35         </dependencies>
36     </dependencyManagement>
37
38     <dependencies>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>util</artifactId>
42         </dependency>
43          <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>concepts</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-parser-api</artifactId>
54         </dependency>
55
56         <dependency>
57             <groupId>com.google.guava</groupId>
58             <artifactId>guava</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.slf4j</groupId>
62             <artifactId>slf4j-api</artifactId>
63         </dependency>
64
65         <dependency>
66             <groupId>org.opendaylight.controller</groupId>
67             <artifactId>config-api</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.mdsal</groupId>
71             <artifactId>yang-binding</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.yangtools</groupId>
75             <artifactId>yang-common</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>concepts</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.mdsal.model</groupId>
83             <artifactId>ietf-inet-types-2013-07-15</artifactId>
84         </dependency>
85
86         <dependency>
87             <groupId>org.osgi</groupId>
88             <artifactId>org.osgi.core</artifactId>
89             <scope>provided</scope>
90         </dependency>
91         <dependency>
92             <groupId>io.netty</groupId>
93             <artifactId>netty-buffer</artifactId>
94         </dependency>
95
96         <!-- Testing dependencies -->
97         <dependency>
98             <groupId>junit</groupId>
99             <artifactId>junit</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.mockito</groupId>
103             <artifactId>mockito-core</artifactId>
104         </dependency>
105
106         <dependency>
107             <groupId>org.opendaylight.controller</groupId>
108             <artifactId>config-manager</artifactId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.controller</groupId>
113             <artifactId>config-manager</artifactId>
114             <type>test-jar</type>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.yangtools</groupId>
118             <artifactId>mockito-configuration</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.controller</groupId>
122             <artifactId>config-util</artifactId>
123         </dependency>
124     </dependencies>
125
126     <build>
127         <plugins>
128             <plugin>
129                 <groupId>org.apache.maven.plugins</groupId>
130                 <artifactId>maven-jar-plugin</artifactId>
131                 <executions>
132                     <execution>
133                         <phase>package</phase>
134                         <goals>
135                             <goal>test-jar</goal>
136                         </goals>
137                     </execution>
138                 </executions>
139             </plugin>
140         </plugins>
141     </build>
142
143     <scm>
144         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
145         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
146         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
147         <tag>HEAD</tag>
148     </scm>
149
150     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
151     <distributionManagement>
152         <site>
153             <id>opendaylight-site</id>
154             <url>${nexus.site.url}/${project.artifactId}/</url>
155         </site>
156     </distributionManagement>
157 </project>