Add netvirt bundle
[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.5.0-SNAPSHOT</version>
16         <relativePath/>
17     </parent>
18
19     <properties>
20         <ovsdb.version>1.3.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.1.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.1.0-SNAPSHOT</version>
77         </dependency>
78
79         <!-- Testing Dependencies -->
80         <dependency>
81             <groupId>junit</groupId>
82             <artifactId>junit</artifactId>
83             <scope>test</scope>
84         </dependency>
85
86         <dependency>
87             <groupId>org.mockito</groupId>
88             <artifactId>mockito-all</artifactId>
89             <scope>test</scope>
90         </dependency>
91
92         <dependency>
93             <groupId>org.powermock</groupId>
94             <artifactId>powermock-core</artifactId>
95             <scope>test</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.powermock</groupId>
99             <artifactId>powermock-module-junit4</artifactId>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.powermock</groupId>
104             <artifactId>powermock-api-mockito</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.powermock</groupId>
109             <artifactId>powermock-api-support</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.powermock</groupId>
114             <artifactId>powermock-reflect</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.mdsal.model</groupId>
119             <artifactId>ietf-yang-types-20130715</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>ch.qos.logback</groupId>
123             <artifactId>logback-core</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>ch.qos.logback</groupId>
127             <artifactId>logback-classic</artifactId>
128         </dependency>
129     </dependencies>
130 </project>