30cb712b52b4a0c6be0c686c8f4f2262045fd46d
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <modelVersion>4.0.0</modelVersion>
14     <scm>
15         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
16         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
17         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
18         <tag>HEAD</tag>
19     </scm>
20     <parent>
21         <groupId>org.opendaylight.bgpcep</groupId>
22         <artifactId>programming-parent</artifactId>
23         <version>0.3.1-SNAPSHOT</version>
24     </parent>
25
26     <artifactId>programming-impl</artifactId>
27     <description>Programming Implementation</description>
28     <packaging>bundle</packaging>
29     <name>${project.artifactId}</name>
30     <prerequisites>
31         <maven>3.0.4</maven>
32     </prerequisites>
33
34     <dependencies>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>programming-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>programming-spi</artifactId>
42         </dependency>
43
44         <dependency>
45             <groupId>org.opendaylight.controller</groupId>
46             <artifactId>sal-binding-api</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>com.google.code.findbugs</groupId>
50             <artifactId>jsr305</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.slf4j</groupId>
54             <artifactId>slf4j-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>com.google.guava</groupId>
58             <artifactId>guava</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>io.netty</groupId>
62             <artifactId>netty-common</artifactId>
63         </dependency>
64
65         <dependency>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>yang-binding</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools</groupId>
71             <artifactId>yang-common</artifactId>
72         </dependency>
73
74         <dependency>
75             <groupId>org.opendaylight.controller</groupId>
76             <artifactId>config-api</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.controller</groupId>
80             <artifactId>sal-common-api</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.controller</groupId>
84             <artifactId>sal-binding-config</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.controller</groupId>
88             <artifactId>netty-config-api</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.osgi</groupId>
92             <artifactId>org.osgi.core</artifactId>
93             <scope>provided</scope>
94         </dependency>
95
96         <!-- Testing dependencies -->
97         <dependency>
98             <groupId>${project.groupId}</groupId>
99             <artifactId>pcep-tunnel-api</artifactId>
100             <version>${project.version}</version>
101             <scope>test</scope>
102         </dependency>
103
104         <dependency>
105             <groupId>junit</groupId>
106             <artifactId>junit</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.controller</groupId>
110             <artifactId>config-manager</artifactId>
111             <type>test-jar</type>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.controller</groupId>
115             <artifactId>config-manager</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.controller</groupId>
119             <artifactId>config-util</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.mockito</groupId>
123             <artifactId>mockito-core</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.yangtools</groupId>
127             <artifactId>mockito-configuration</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>org.opendaylight.controller</groupId>
131             <artifactId>netty-timer-config</artifactId>
132             <scope>test</scope>
133         </dependency>
134         <dependency>
135             <groupId>org.opendaylight.controller</groupId>
136             <artifactId>sal-broker-impl</artifactId>
137             <scope>test</scope>
138         </dependency>
139         <dependency>
140             <groupId>org.opendaylight.yangtools</groupId>
141             <artifactId>binding-generator-impl</artifactId>
142             <scope>test</scope>
143         </dependency>
144         <dependency>
145             <groupId>org.opendaylight.yangtools</groupId>
146             <artifactId>yang-model-api</artifactId>
147             <scope>test</scope>
148         </dependency>
149         <dependency>
150             <groupId>org.opendaylight.yangtools</groupId>
151             <artifactId>yang-parser-api</artifactId>
152             <scope>test</scope>
153         </dependency>
154         <dependency>
155             <groupId>org.opendaylight.yangtools</groupId>
156             <artifactId>yang-parser-impl</artifactId>
157             <scope>test</scope>
158         </dependency>
159         <dependency>
160             <groupId>org.opendaylight.controller</groupId>
161             <artifactId>sal-binding-broker-impl</artifactId>
162             <scope>test</scope>
163         </dependency>
164         <dependency>
165             <groupId>org.opendaylight.controller</groupId>
166             <artifactId>sal-binding-broker-impl</artifactId>
167             <scope>test</scope>
168             <type>test-jar</type>
169         </dependency>
170     </dependencies>
171
172     <build>
173         <plugins>
174            <plugin>
175                <groupId>org.apache.felix</groupId>
176                <artifactId>maven-bundle-plugin</artifactId>
177                <extensions>true</extensions>
178                <configuration>
179                    <instructions>
180                        <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
181                        <Export-Package>
182                             org.opendaylight.bgpcep.programming.impl,
183                             org.opendaylight.controller.config.yang.programming.impl
184                         </Export-Package>
185                    </instructions>
186                </configuration>
187            </plugin>
188            <plugin>
189                 <groupId>org.apache.maven.plugins</groupId>
190                 <artifactId>maven-jar-plugin</artifactId>
191                 <executions>
192                     <execution>
193                         <phase>package</phase>
194                         <goals>
195                             <goal>test-jar</goal>
196                         </goals>
197                     </execution>
198                 </executions>
199             </plugin>
200             <plugin>
201                 <groupId>org.opendaylight.yangtools</groupId>
202                 <artifactId>yang-maven-plugin</artifactId>
203             </plugin>
204         </plugins>
205     </build>
206 </project>