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