Improved unit tests for AveragingProgressTracker class
[controller.git] / opendaylight / md-sal / sal-karaf-xsql / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4     <!--
5         Licensed to the Apache Software Foundation (ASF) under one or more
6         contributor license agreements.  See the NOTICE file distributed with
7         this work for additional information regarding copyright ownership.
8         The ASF licenses this file to You under the Apache License, Version 2.0
9         (the "License"); you may not use this file except in compliance with
10         the License.  You may obtain a copy of the License at
11
12             http://www.apache.org/licenses/LICENSE-2.0
13
14         Unless required by applicable law or agreed to in writing, software
15         distributed under the License is distributed on an "AS IS" BASIS,
16         WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17         See the License for the specific language governing permissions and
18         limitations under the License.
19     -->
20
21     <modelVersion>4.0.0</modelVersion>
22
23     <parent>
24         <groupId>org.opendaylight.odlparent</groupId>
25         <artifactId>bundle-parent</artifactId>
26         <version>1.9.0-SNAPSHOT</version>
27         <relativePath/>
28     </parent>
29
30     <groupId>org.opendaylight.controller</groupId>
31     <artifactId>sal-karaf-xsql</artifactId>
32     <version>1.6.0-SNAPSHOT</version>
33     <packaging>bundle</packaging>
34     <name>Apache Karaf :: Shell odl/xsql Commands</name>
35
36     <description>Provides the OSGi odl commands</description>
37
38     <dependencyManagement>
39         <dependencies>
40             <dependency>
41                 <groupId>org.opendaylight.controller</groupId>
42                 <artifactId>mdsal-artifacts</artifactId>
43                 <version>1.6.0-SNAPSHOT</version>
44                 <type>pom</type>
45                 <scope>import</scope>
46             </dependency>
47         </dependencies>
48     </dependencyManagement>
49
50     <dependencies>
51         <dependency>
52             <groupId>org.apache.karaf.shell</groupId>
53             <artifactId>org.apache.karaf.shell.console</artifactId>
54             <version>${karaf.version}</version>
55         </dependency>
56
57         <dependency>
58             <groupId>org.osgi</groupId>
59             <artifactId>org.osgi.core</artifactId>
60         </dependency>
61
62         <dependency>
63             <groupId>org.osgi</groupId>
64             <artifactId>org.osgi.compendium</artifactId>
65             <version>5.0.0</version>
66             <scope>provided</scope>
67         </dependency>
68
69         <dependency>
70             <groupId>junit</groupId>
71             <artifactId>junit</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.controller</groupId>
75             <artifactId>sal-dom-xsql</artifactId>
76         </dependency>
77     </dependencies>
78
79     <build>
80         <plugins>
81             <plugin>
82                 <groupId>org.apache.felix</groupId>
83                 <artifactId>maven-bundle-plugin</artifactId>
84                 <extensions>true</extensions>
85                 <configuration>
86                     <instructions>
87                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
88                         <Export-Package>org.opendaylight.controller.xsql*;version=${project.version}</Export-Package>
89                         <Import-Package>!org.opendaylight.controller.xsql*,
90                             org.apache.aries.blueprint,
91                             org.osgi.service.blueprint.container,
92                             org.osgi.service.blueprint.reflect,
93                             org.apache.karaf.shell.commands,
94                             org.apache.karaf.shell.console,
95                             *</Import-Package>
96                     </instructions>
97                 </configuration>
98             </plugin>
99         </plugins>
100     </build>
101
102 </project>