Refactoring of cisco-xr-driver and impl modules.
[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.maven.plugins</groupId>
40                 <artifactId>maven-jar-plugin</artifactId>
41                 <version>3.0.2</version>
42                 <executions>
43                     <execution>
44                         <goals>
45                             <goal>test-jar</goal>
46                         </goals>
47                     </execution>
48                 </executions>
49             </plugin>
50             <plugin>
51                 <groupId>org.apache.felix</groupId>
52                 <artifactId>maven-bundle-plugin</artifactId>
53                 <configuration>
54                     <instructions>
55                         <Export-Package>
56                             org.opendaylight.unimgr.mef.nrp.common,
57                             org.opendaylight.unimgr.mef.nrp.api,
58                             org.opendaylight.unimgr.api,
59                             org.opendaylight.unimgr.utils
60                         </Export-Package>
61                     </instructions>
62                 </configuration>
63             </plugin>
64         </plugins>
65     </build>
66
67     <dependencies>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>unimgr-api</artifactId>
71             <version>${project.version}</version>
72         </dependency>
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>unimgr-presto-api</artifactId>
76             <version>${project.version}</version>
77         </dependency>
78
79         <!--     OVSDB dependency -->
80         <dependency>
81             <groupId>org.opendaylight.ovsdb</groupId>
82             <artifactId>southbound-impl</artifactId>
83             <version>${ovsdb.version}</version>
84         </dependency>
85
86         <dependency>
87             <groupId>org.opendaylight.netconf</groupId>
88             <artifactId>netconf-topology</artifactId>
89             <version>1.2.0-SNAPSHOT</version>
90         </dependency>
91
92         <!-- dependencies to use AbstractDataBrokerTest -->
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>sal-binding-broker-impl</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.controller</groupId>
100             <artifactId>sal-binding-broker-impl</artifactId>
101             <type>test-jar</type>
102             <scope>test</scope>
103         </dependency>
104
105         <!-- Testing Dependencies -->
106         <dependency>
107             <groupId>junit</groupId>
108             <artifactId>junit</artifactId>
109             <scope>test</scope>
110         </dependency>
111
112         <dependency>
113             <groupId>org.mockito</groupId>
114             <artifactId>mockito-core</artifactId>
115             <scope>test</scope>
116         </dependency>
117
118         <dependency>
119             <groupId>org.powermock</groupId>
120             <artifactId>powermock-core</artifactId>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.powermock</groupId>
125             <artifactId>powermock-module-junit4</artifactId>
126             <scope>test</scope>
127         </dependency>
128         <dependency>
129             <groupId>org.powermock</groupId>
130             <artifactId>powermock-api-mockito</artifactId>
131             <scope>test</scope>
132         </dependency>
133         <dependency>
134             <groupId>org.powermock</groupId>
135             <artifactId>powermock-api-support</artifactId>
136             <scope>test</scope>
137         </dependency>
138         <dependency>
139             <groupId>org.powermock</groupId>
140             <artifactId>powermock-reflect</artifactId>
141             <scope>test</scope>
142         </dependency>
143         <dependency>
144             <groupId>org.opendaylight.mdsal.model</groupId>
145             <artifactId>ietf-yang-types-20130715</artifactId>
146         </dependency>
147         <dependency>
148             <groupId>ch.qos.logback</groupId>
149             <artifactId>logback-core</artifactId>
150         </dependency>
151         <dependency>
152             <groupId>ch.qos.logback</groupId>
153             <artifactId>logback-classic</artifactId>
154         </dependency>
155     </dependencies>
156 </project>