code cleanup
[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.mdsal</groupId>
14         <artifactId>binding-parent</artifactId>
15         <version>5.0.10</version>
16         <relativePath/>
17     </parent>
18
19     <properties>
20       <mdsal.version>5.0.10</mdsal.version>
21       <odlparent.checkstyle.enforce>true</odlparent.checkstyle.enforce>
22       <odlparent.spotbugs.enforce>true</odlparent.spotbugs.enforce>
23     </properties>
24
25     <modelVersion>4.0.0</modelVersion>
26     <groupId>org.opendaylight.unimgr</groupId>
27     <artifactId>unimgr-impl</artifactId>
28     <version>0.6.0-SNAPSHOT</version>
29     <packaging>bundle</packaging>
30     <!-- <name> formatting is used by autorelse to parse and notify projects on
31          build failure. Please do not modify this unless you have a good reason. -->
32     <name>ODL :: unimgr :: ${project.artifactId}</name>
33
34     <dependencyManagement>
35         <dependencies>
36             <dependency>
37                 <groupId>org.opendaylight.controller</groupId>
38                 <artifactId>mdsal-artifacts</artifactId>
39                 <version>1.11.1</version>
40                 <type>pom</type>
41                 <scope>import</scope>
42             </dependency>
43         </dependencies>
44     </dependencyManagement>
45
46     <build>
47         <plugins>
48             <plugin>
49                 <groupId>org.apache.maven.plugins</groupId>
50                 <artifactId>maven-compiler-plugin</artifactId>
51                 <configuration>
52                     <source>1.8</source>
53                     <target>1.8</target>
54                 </configuration>
55             </plugin>
56             <plugin>
57                 <groupId>org.apache.maven.plugins</groupId>
58                 <artifactId>maven-jar-plugin</artifactId>
59                 <executions>
60                     <execution>
61                         <goals>
62                             <goal>test-jar</goal>
63                         </goals>
64                     </execution>
65                 </executions>
66             </plugin>
67             <plugin>
68                 <groupId>org.apache.felix</groupId>
69                 <artifactId>maven-bundle-plugin</artifactId>
70                 <configuration>
71                     <instructions>
72                         <Export-Package>
73                             org.opendaylight.unimgr.mef.nrp.common,
74                             org.opendaylight.unimgr.mef.nrp.api,
75                             org.opendaylight.unimgr.api,
76                             org.opendaylight.unimgr.utils
77                         </Export-Package>
78                     </instructions>
79                 </configuration>
80             </plugin>
81         </plugins>
82     </build>
83
84     <dependencies>
85
86         <dependency>
87             <groupId>com.google.code.findbugs</groupId>
88             <artifactId>jsr305</artifactId>
89             <version>3.0.2</version>
90         </dependency>
91
92         <dependency>
93             <groupId>org.opendaylight.unimgr</groupId>
94             <artifactId>unimgr-nrp-tapi-api</artifactId>
95             <version>${project.version}</version>
96         </dependency>
97
98         <dependency>
99             <groupId>org.opendaylight.mdsal.model</groupId>
100             <artifactId>ietf-topology</artifactId>
101         </dependency>
102
103         <!-- dependencies to use AbstractConcurrentDataBrokerTest -->
104         <dependency>
105             <groupId>org.opendaylight.mdsal</groupId>
106             <artifactId>mdsal-binding-dom-adapter</artifactId>
107             <version>${mdsal.version}</version>
108             <classifier>tests</classifier>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.mdsal</groupId>
113             <artifactId>mdsal-binding-dom-adapter</artifactId>
114         </dependency>
115
116         <!-- dependecies of decomposer -->
117         <dependency>
118             <groupId>org.jgrapht</groupId>
119             <artifactId>jgrapht-core</artifactId>
120             <version>1.0.1</version>
121         </dependency>
122
123         <!-- Testing Dependencies -->
124         <dependency>
125             <groupId>junit</groupId>
126             <artifactId>junit</artifactId>
127             <scope>test</scope>
128         </dependency>
129         <dependency>
130             <groupId>org.powermock</groupId>
131             <artifactId>powermock-core</artifactId>
132             <scope>test</scope>
133         </dependency>
134         <dependency>
135             <groupId>org.powermock</groupId>
136             <artifactId>powermock-module-junit4</artifactId>
137             <scope>test</scope>
138         </dependency>
139         <dependency>
140             <groupId>org.powermock</groupId>
141             <artifactId>powermock-api-mockito2</artifactId>
142             <scope>test</scope>
143         </dependency>
144         <dependency>
145             <groupId>org.powermock</groupId>
146             <artifactId>powermock-api-support</artifactId>
147             <scope>test</scope>
148         </dependency>
149         <dependency>
150             <groupId>org.powermock</groupId>
151             <artifactId>powermock-reflect</artifactId>
152             <scope>test</scope>
153         </dependency>
154     <dependency>
155         <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
156         <artifactId>rfc6991</artifactId>
157     </dependency>
158         <dependency>
159             <groupId>ch.qos.logback</groupId>
160             <artifactId>logback-core</artifactId>
161             <scope>test</scope>
162         </dependency>
163     </dependencies>
164 </project>