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