Bump versions to 0.16.13-SNAPSHOT
[bgpcep.git] / pcep / impl / 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.16.13-SNAPSHOT</version>
19         <relativePath>../../binding-parent</relativePath>
20     </parent>
21
22     <artifactId>pcep-impl</artifactId>
23     <description>PCE Protocol Implementation</description>
24     <packaging>bundle</packaging>
25     <name>${project.artifactId}</name>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>pcep-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>pcep-spi</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>pcep-base-parser</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>rsvp-api</artifactId>
43         </dependency>
44
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>concepts</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>util</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>testtool-util</artifactId>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>io.netty</groupId>
60             <artifactId>netty-buffer</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>io.netty</groupId>
64             <artifactId>netty-codec</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>io.netty</groupId>
68             <artifactId>netty-common</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>io.netty</groupId>
72             <artifactId>netty-handler</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>io.netty</groupId>
76             <artifactId>netty-transport</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>io.netty</groupId>
80             <artifactId>netty-transport-native-epoll</artifactId>
81             <classifier>linux-x86_64</classifier>
82         </dependency>
83         <dependency>
84             <groupId>com.google.guava</groupId>
85             <artifactId>guava</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.slf4j</groupId>
89             <artifactId>slf4j-api</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
93             <artifactId>rfc6991-ietf-inet-types</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.yangtools</groupId>
97             <artifactId>yang-common</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.yangtools</groupId>
101             <artifactId>concepts</artifactId>
102         </dependency>
103
104         <!-- Test dependencies -->
105         <dependency>
106             <groupId>org.opendaylight.yangtools</groupId>
107             <artifactId>mockito-configuration</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>${project.groupId}</groupId>
111             <artifactId>pcep-spi</artifactId>
112             <type>test-jar</type>
113             <scope>test</scope>
114         </dependency>
115     </dependencies>
116
117     <build>
118         <plugins>
119             <plugin>
120                 <groupId>org.apache.felix</groupId>
121                 <artifactId>maven-bundle-plugin</artifactId>
122                 <extensions>true</extensions>
123                 <configuration>
124                     <instructions>
125                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
126                         <Export-Package>
127                             org.opendaylight.protocol.pcep.impl.*
128                             ;-split-package:=error
129                         </Export-Package>
130                     </instructions>
131                 </configuration>
132             </plugin>
133             <plugin>
134                 <artifactId>maven-jar-plugin</artifactId>
135                 <executions>
136                     <execution>
137                         <goals>
138                             <goal>test-jar</goal>
139                         </goals>
140                     </execution>
141                 </executions>
142             </plugin>
143             <plugin>
144                 <artifactId>maven-source-plugin</artifactId>
145                 <executions>
146                     <execution>
147                         <goals>
148                             <goal>test-jar-no-fork</goal>
149                         </goals>
150                     </execution>
151                 </executions>
152             </plugin>
153         </plugins>
154     </build>
155
156     <scm>
157         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
158         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
159         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
160         <tag>HEAD</tag>
161     </scm>
162 </project>