85c2aca6a5ce6237445a4d7d774b39dfec0d1b9c
[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.15.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-test-utils</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         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.mdsal</groupId>
129             <artifactId>mdsal-binding-dom-adapter</artifactId>
130             <scope>test</scope>
131             <type>test-jar</type>
132         </dependency>
133         <dependency>
134             <groupId>org.hamcrest</groupId>
135             <artifactId>hamcrest-core</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.yangtools</groupId>
139             <artifactId>yang-test-util</artifactId>
140         </dependency>
141     </dependencies>
142
143     <build>
144         <plugins>
145             <plugin>
146                 <groupId>org.apache.felix</groupId>
147                 <artifactId>maven-bundle-plugin</artifactId>
148                 <extensions>true</extensions>
149                 <configuration>
150                     <instructions>
151                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
152                         <Export-Package>
153                             org.opendaylight.bgpcep.programming.impl,
154                             org.opendaylight.controller.config.yang.programming.impl
155                             ;-split-package:=error
156                         </Export-Package>
157                     </instructions>
158                 </configuration>
159             </plugin>
160             <plugin>
161                 <artifactId>maven-jar-plugin</artifactId>
162                 <executions>
163                     <execution>
164                         <goals>
165                             <goal>test-jar</goal>
166                         </goals>
167                     </execution>
168                 </executions>
169             </plugin>
170             <plugin>
171                 <artifactId>maven-source-plugin</artifactId>
172                 <executions>
173                     <execution>
174                         <goals>
175                             <goal>test-jar-no-fork</goal>
176                         </goals>
177                     </execution>
178                 </executions>
179             </plugin>
180         </plugins>
181     </build>
182
183     <scm>
184         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
185         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
186         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
187         <tag>HEAD</tag>
188     </scm>
189 </project>