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.13.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         </dependency>
76         <dependency>
77             <groupId>org.checkerframework</groupId>
78             <artifactId>checker-qual</artifactId>
79         </dependency>
80
81         <!-- Testing dependencies -->
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>pcep-tunnel-api</artifactId>
85             <version>${project.version}</version>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>testtool-util</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.yangtools</groupId>
95             <artifactId>mockito-configuration</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.mdsal</groupId>
99             <artifactId>mdsal-dom-broker</artifactId>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.mdsal</groupId>
104             <artifactId>mdsal-binding-generator-impl</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.yangtools</groupId>
109             <artifactId>yang-model-api</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.yangtools</groupId>
114             <artifactId>yang-parser-api</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.mdsal</groupId>
119             <artifactId>mdsal-binding-dom-adapter</artifactId>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.mdsal</groupId>
124             <artifactId>mdsal-binding-dom-adapter</artifactId>
125             <scope>test</scope>
126             <type>test-jar</type>
127         </dependency>
128         <dependency>
129             <groupId>org.hamcrest</groupId>
130             <artifactId>hamcrest-core</artifactId>
131         </dependency>
132         <dependency>
133             <groupId>org.opendaylight.yangtools</groupId>
134             <artifactId>yang-test-util</artifactId>
135         </dependency>
136     </dependencies>
137
138     <build>
139         <plugins>
140             <plugin>
141                 <groupId>org.apache.felix</groupId>
142                 <artifactId>maven-bundle-plugin</artifactId>
143                 <extensions>true</extensions>
144                 <configuration>
145                     <instructions>
146                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
147                         <Export-Package>
148                             org.opendaylight.bgpcep.programming.impl,
149                             org.opendaylight.controller.config.yang.programming.impl
150                             ;-split-package:=error
151                         </Export-Package>
152                     </instructions>
153                 </configuration>
154             </plugin>
155             <plugin>
156                 <groupId>org.apache.maven.plugins</groupId>
157                 <artifactId>maven-jar-plugin</artifactId>
158                 <executions>
159                     <execution>
160                         <phase>package</phase>
161                         <goals>
162                             <goal>test-jar</goal>
163                         </goals>
164                     </execution>
165                 </executions>
166             </plugin>
167         </plugins>
168     </build>
169
170     <scm>
171         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
172         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
173         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
174         <tag>HEAD</tag>
175     </scm>
176 </project>