Bump versions by x.y.(z+1)
[bgpcep.git] / programming / 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>bgpcep-parent</artifactId>
18         <version>0.12.0-SNAPSHOT</version>
19         <relativePath>../../parent</relativePath>
20     </parent>
21
22     <artifactId>programming-impl</artifactId>
23     <packaging>bundle</packaging>
24     <description>Programming Implementation</description>
25     <name>${project.artifactId}</name>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>programming-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>programming-spi</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.slf4j</groupId>
38             <artifactId>slf4j-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>com.google.guava</groupId>
42             <artifactId>guava</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>io.netty</groupId>
46             <artifactId>netty-common</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal</groupId>
50             <artifactId>mdsal-common-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>mdsal-binding-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.mdsal</groupId>
58             <artifactId>yang-binding</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>mdsal-singleton-common-api</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.yangtools</groupId>
66             <artifactId>yang-common</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>concepts</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.osgi</groupId>
74             <artifactId>org.osgi.core</artifactId>
75             <scope>provided</scope>
76         </dependency>
77
78         <!-- Testing dependencies -->
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>pcep-tunnel-api</artifactId>
82             <version>${project.version}</version>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>${project.groupId}</groupId>
87             <artifactId>testtool-util</artifactId>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.mockito</groupId>
92             <artifactId>mockito-core</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.yangtools</groupId>
96             <artifactId>mockito-configuration</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.controller</groupId>
100             <artifactId>sal-broker-impl</artifactId>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.mdsal</groupId>
105             <artifactId>mdsal-binding-generator-impl</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.yangtools</groupId>
110             <artifactId>yang-model-api</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.yangtools</groupId>
115             <artifactId>yang-parser-api</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.mdsal</groupId>
120             <artifactId>mdsal-binding-dom-adapter</artifactId>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.mdsal</groupId>
125             <artifactId>mdsal-binding-dom-adapter</artifactId>
126             <scope>test</scope>
127             <type>test-jar</type>
128         </dependency>
129         <dependency>
130             <groupId>org.hamcrest</groupId>
131             <artifactId>hamcrest-core</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.yangtools</groupId>
135             <artifactId>yang-test-util</artifactId>
136         </dependency>
137     </dependencies>
138
139     <build>
140         <plugins>
141             <plugin>
142                 <groupId>org.apache.felix</groupId>
143                 <artifactId>maven-bundle-plugin</artifactId>
144                 <extensions>true</extensions>
145                 <configuration>
146                     <instructions>
147                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
148                         <Export-Package>
149                             org.opendaylight.bgpcep.programming.impl,
150                             org.opendaylight.controller.config.yang.programming.impl
151                             ;-split-package:=error
152                         </Export-Package>
153                     </instructions>
154                 </configuration>
155             </plugin>
156             <plugin>
157                 <groupId>org.apache.maven.plugins</groupId>
158                 <artifactId>maven-jar-plugin</artifactId>
159                 <executions>
160                     <execution>
161                         <phase>package</phase>
162                         <goals>
163                             <goal>test-jar</goal>
164                         </goals>
165                     </execution>
166                 </executions>
167             </plugin>
168         </plugins>
169     </build>
170
171     <scm>
172         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
173         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
174         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
175         <tag>HEAD</tag>
176     </scm>
177 </project>