Rome hackathon work integrated onto boron.
[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                         <Import-Package>*</Import-Package>
44                         <Export-Package>org.mef.nrp.impl, org.opendaylight.unimgr.api
45                         </Export-Package>
46                     </instructions>
47                 </configuration>
48             </plugin>
49         </plugins>
50     </build>
51
52     <dependencies>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>unimgr-api</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58
59         <!--     OVSDB dependency -->
60         <dependency>
61             <groupId>org.opendaylight.ovsdb</groupId>
62             <artifactId>southbound-impl</artifactId>
63             <version>${ovsdb.version}</version>
64         </dependency>
65
66         <dependency>
67                 <groupId>org.opendaylight.unimgr</groupId>
68                 <artifactId>edgeassure-1000</artifactId>
69                 <version>${project.version}</version>
70         </dependency>
71
72         <dependency>
73             <groupId>org.opendaylight.netconf</groupId>
74             <artifactId>netconf-topology</artifactId>
75             <version>1.1.0-SNAPSHOT</version>
76         </dependency>
77
78         <!-- Testing Dependencies -->
79         <dependency>
80             <groupId>junit</groupId>
81             <artifactId>junit</artifactId>
82             <scope>test</scope>
83         </dependency>
84
85         <dependency>
86             <groupId>org.mockito</groupId>
87             <artifactId>mockito-all</artifactId>
88             <scope>test</scope>
89         </dependency>
90
91         <dependency>
92             <groupId>org.powermock</groupId>
93             <artifactId>powermock-core</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.powermock</groupId>
98             <artifactId>powermock-module-junit4</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.powermock</groupId>
103             <artifactId>powermock-api-mockito</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.powermock</groupId>
108             <artifactId>powermock-api-support</artifactId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.powermock</groupId>
113             <artifactId>powermock-reflect</artifactId>
114             <scope>test</scope>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.mdsal.model</groupId>
118             <artifactId>ietf-yang-types-20130715</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>ch.qos.logback</groupId>
122             <artifactId>logback-core</artifactId>
123         </dependency>
124         <dependency>
125             <groupId>ch.qos.logback</groupId>
126             <artifactId>logback-classic</artifactId>
127         </dependency>
128     </dependencies>
129 </project>