Release Oxygen
[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"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.bgpcep</groupId>
17         <artifactId>binding-parent</artifactId>
18         <version>0.9.4</version>
19         <relativePath>../../binding-parent</relativePath>
20     </parent>
21
22     <artifactId>bgp-parser-spi</artifactId>
23     <packaging>bundle</packaging>
24     <description>BGP Parser SPI</description>
25     <name>${project.artifactId}</name>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>util</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>concepts</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>bgp-concepts</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>bgp-parser-api</artifactId>
43         </dependency>
44
45         <dependency>
46             <groupId>com.google.guava</groupId>
47             <artifactId>guava</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.slf4j</groupId>
51             <artifactId>slf4j-api</artifactId>
52         </dependency>
53
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>config-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal</groupId>
60             <artifactId>yang-binding</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.yangtools</groupId>
64             <artifactId>yang-common</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>concepts</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.mdsal.model</groupId>
72             <artifactId>ietf-inet-types-2013-07-15</artifactId>
73         </dependency>
74
75         <dependency>
76             <groupId>org.osgi</groupId>
77             <artifactId>org.osgi.core</artifactId>
78             <scope>provided</scope>
79         </dependency>
80         <dependency>
81             <groupId>io.netty</groupId>
82             <artifactId>netty-buffer</artifactId>
83         </dependency>
84
85         <!-- Testing dependencies -->
86         <dependency>
87             <groupId>junit</groupId>
88             <artifactId>junit</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.mockito</groupId>
92             <artifactId>mockito-core</artifactId>
93         </dependency>
94
95         <dependency>
96             <groupId>org.opendaylight.controller</groupId>
97             <artifactId>config-manager</artifactId>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.controller</groupId>
102             <artifactId>config-manager</artifactId>
103             <type>test-jar</type>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.yangtools</groupId>
107             <artifactId>mockito-configuration</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.controller</groupId>
111             <artifactId>config-util</artifactId>
112         </dependency>
113     </dependencies>
114
115     <build>
116         <plugins>
117             <plugin>
118                 <groupId>org.apache.maven.plugins</groupId>
119                 <artifactId>maven-jar-plugin</artifactId>
120                 <executions>
121                     <execution>
122                         <phase>package</phase>
123                         <goals>
124                             <goal>test-jar</goal>
125                         </goals>
126                     </execution>
127                 </executions>
128             </plugin>
129         </plugins>
130     </build>
131
132     <scm>
133         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
134         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
135         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
136         <tag>HEAD</tag>
137     </scm>
138 </project>