Release Carbon
[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.1-Carbon</version>
16         <relativePath/>
17     </parent>
18
19     <properties>
20         <ovsdb.version>1.4.1-Carbon</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.1-Carbon</version>
27     <packaging>bundle</packaging>
28     <!-- <name> formatting is used by autorelease to parse and notify projects on
29          build failure. Please do not modify this unless you have a good reason. -->
30     <name>ODL :: unimgr :: ${project.artifactId}</name>
31     <build>
32         <plugins>
33             <plugin>
34                 <groupId>org.apache.maven.plugins</groupId>
35                 <artifactId>maven-compiler-plugin</artifactId>
36                 <configuration>
37                     <source>1.8</source>
38                     <target>1.8</target>
39                 </configuration>
40             </plugin>
41             <plugin>
42                 <groupId>org.apache.maven.plugins</groupId>
43                 <artifactId>maven-jar-plugin</artifactId>
44                 <version>3.0.2</version>
45                 <executions>
46                     <execution>
47                         <goals>
48                             <goal>test-jar</goal>
49                         </goals>
50                     </execution>
51                 </executions>
52             </plugin>
53             <plugin>
54                 <groupId>org.apache.felix</groupId>
55                 <artifactId>maven-bundle-plugin</artifactId>
56                 <configuration>
57                     <instructions>
58                         <Export-Package>
59                             org.opendaylight.unimgr.mef.nrp.common,
60                             org.opendaylight.unimgr.mef.nrp.api,
61                             org.opendaylight.unimgr.api,
62                             org.opendaylight.unimgr.utils
63                         </Export-Package>
64                     </instructions>
65                 </configuration>
66             </plugin>
67         </plugins>
68     </build>
69
70     <dependencies>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>unimgr-api</artifactId>
74             <version>${project.version}</version>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>unimgr-presto-api</artifactId>
79             <version>${project.version}</version>
80         </dependency>
81
82         <!--     OVSDB dependency -->
83         <dependency>
84             <groupId>org.opendaylight.ovsdb</groupId>
85             <artifactId>southbound-impl</artifactId>
86             <version>${ovsdb.version}</version>
87         </dependency>
88
89         <dependency>
90             <groupId>org.opendaylight.netconf</groupId>
91             <artifactId>netconf-topology</artifactId>
92             <version>1.2.1-Carbon</version>
93         </dependency>
94
95         <!-- dependencies to use AbstractDataBrokerTest -->
96         <dependency>
97             <groupId>org.opendaylight.controller</groupId>
98             <artifactId>sal-binding-broker-impl</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.controller</groupId>
103             <artifactId>sal-binding-broker-impl</artifactId>
104             <type>test-jar</type>
105             <scope>test</scope>
106         </dependency>
107
108         <!-- Testing Dependencies -->
109         <dependency>
110             <groupId>junit</groupId>
111             <artifactId>junit</artifactId>
112             <scope>test</scope>
113         </dependency>
114
115         <dependency>
116             <groupId>org.mockito</groupId>
117             <artifactId>mockito-core</artifactId>
118             <scope>test</scope>
119         </dependency>
120
121         <dependency>
122             <groupId>org.powermock</groupId>
123             <artifactId>powermock-core</artifactId>
124             <scope>test</scope>
125         </dependency>
126         <dependency>
127             <groupId>org.powermock</groupId>
128             <artifactId>powermock-module-junit4</artifactId>
129             <scope>test</scope>
130         </dependency>
131         <dependency>
132             <groupId>org.powermock</groupId>
133             <artifactId>powermock-api-mockito</artifactId>
134             <scope>test</scope>
135         </dependency>
136         <dependency>
137             <groupId>org.powermock</groupId>
138             <artifactId>powermock-api-support</artifactId>
139             <scope>test</scope>
140         </dependency>
141         <dependency>
142             <groupId>org.powermock</groupId>
143             <artifactId>powermock-reflect</artifactId>
144             <scope>test</scope>
145         </dependency>
146         <dependency>
147             <groupId>org.opendaylight.mdsal.model</groupId>
148             <artifactId>ietf-yang-types-20130715</artifactId>
149         </dependency>
150         <dependency>
151             <groupId>ch.qos.logback</groupId>
152             <artifactId>logback-core</artifactId>
153         </dependency>
154         <dependency>
155             <groupId>ch.qos.logback</groupId>
156             <artifactId>logback-classic</artifactId>
157         </dependency>
158     </dependencies>
159 </project>