Fixes for dlux
[unimgr.git] / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cable Television Laboratories, Inc. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.controller</groupId>
14         <artifactId>config-parent</artifactId>
15         <version>0.6.0-SNAPSHOT</version>
16         <relativePath/>
17     </parent>
18
19     <properties>
20         <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
21     </properties>
22
23     <modelVersion>4.0.0</modelVersion>
24     <groupId>org.opendaylight.unimgr</groupId>
25     <artifactId>unimgr-impl</artifactId>
26     <version>0.2.0-SNAPSHOT</version>
27     <packaging>bundle</packaging>
28     <build>
29         <plugins>
30             <plugin>
31                 <groupId>org.apache.maven.plugins</groupId>
32                 <artifactId>maven-compiler-plugin</artifactId>
33                 <configuration>
34                     <source>1.8</source>
35                     <target>1.8</target>
36                 </configuration>
37             </plugin>
38             <plugin>
39                 <groupId>org.apache.felix</groupId>
40                 <artifactId>maven-bundle-plugin</artifactId>
41                 <configuration>
42                     <instructions>
43 <!--                         <Export-Package> -->
44 <!--                             org.opendaylight.unimgr.mef.nrp.common, -->
45 <!--                             org.opendaylight.unimgr.mef.nrp.api, -->
46 <!--                             org.opendaylight.unimgr.api -->
47 <!--                         </Export-Package> -->
48                     </instructions>
49                 </configuration>
50             </plugin>
51         </plugins>
52     </build>
53
54     <dependencies>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>unimgr-api</artifactId>
58             <version>${project.version}</version>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>unimgr-presto-api</artifactId>
63             <version>${project.version}</version>
64         </dependency>
65
66         <!--     OVSDB dependency -->
67         <dependency>
68             <groupId>org.opendaylight.ovsdb</groupId>
69             <artifactId>southbound-impl</artifactId>
70             <version>${ovsdb.version}</version>
71         </dependency>
72
73         <dependency>
74             <groupId>org.opendaylight.netconf</groupId>
75             <artifactId>netconf-topology</artifactId>
76             <version>1.2.0-SNAPSHOT</version>
77         </dependency>
78
79         <!-- dependencies to use AbstractDataBrokerTest -->
80         <dependency>
81             <groupId>org.opendaylight.controller</groupId>
82             <artifactId>sal-binding-broker-impl</artifactId>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>sal-binding-broker-impl</artifactId>
88             <type>test-jar</type>
89             <scope>test</scope>
90         </dependency>
91
92         <!-- Testing Dependencies -->
93         <dependency>
94             <groupId>junit</groupId>
95             <artifactId>junit</artifactId>
96             <scope>test</scope>
97         </dependency>
98
99         <dependency>
100             <groupId>org.mockito</groupId>
101             <artifactId>mockito-all</artifactId>
102             <scope>test</scope>
103         </dependency>
104
105         <dependency>
106             <groupId>org.powermock</groupId>
107             <artifactId>powermock-core</artifactId>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <groupId>org.powermock</groupId>
112             <artifactId>powermock-module-junit4</artifactId>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.powermock</groupId>
117             <artifactId>powermock-api-mockito</artifactId>
118             <scope>test</scope>
119         </dependency>
120         <dependency>
121             <groupId>org.powermock</groupId>
122             <artifactId>powermock-api-support</artifactId>
123             <scope>test</scope>
124         </dependency>
125         <dependency>
126             <groupId>org.powermock</groupId>
127             <artifactId>powermock-reflect</artifactId>
128             <scope>test</scope>
129         </dependency>
130         <dependency>
131             <groupId>org.opendaylight.mdsal.model</groupId>
132             <artifactId>ietf-yang-types-20130715</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>ch.qos.logback</groupId>
136             <artifactId>logback-core</artifactId>
137         </dependency>
138         <dependency>
139             <groupId>ch.qos.logback</groupId>
140             <artifactId>logback-classic</artifactId>
141         </dependency>
142     </dependencies>
143 </project>