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