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