JUnit test case for ITM
[genius.git] / itm / itm-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Ericsson India Global Services Pvt Ltd. and others.  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
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.genius</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.1.0-SNAPSHOT</version>
16     <relativePath>../../commons/config-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>itm-impl</artifactId>
21   <version>0.1.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>itm-api</artifactId>
28       <version>${project.version}</version>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.genius</groupId>
32       <artifactId>interfacemanager-api</artifactId>
33       <version>${genius.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.genius</groupId>
37       <artifactId>mdsalutil-api</artifactId>
38       <version>${genius.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>sal-binding-broker-impl</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.mdsal.model</groupId>
46       <artifactId>ietf-interfaces</artifactId>
47     </dependency>
48     <!-- Testing Dependencies -->
49     <dependency>
50       <groupId>junit</groupId>
51       <artifactId>junit</artifactId>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.mockito</groupId>
56       <artifactId>mockito-all</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.osgi</groupId>
61       <artifactId>org.osgi.core</artifactId>
62       <scope>provided</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.apache.karaf.shell</groupId>
66       <artifactId>org.apache.karaf.shell.console</artifactId>
67       <version>${karaf.shell.console.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>com.google.guava</groupId>
71       <artifactId>guava</artifactId>
72       <version>18.0</version>
73     </dependency>
74     <dependency>
75       <groupId>commons-net</groupId>
76       <artifactId>commons-net</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.genius</groupId>
80       <artifactId>idmanager-api</artifactId>
81       <version>${genius.version}</version>
82     </dependency>
83   </dependencies>
84   <build>
85     <plugins>
86       <plugin>
87         <groupId>org.apache.felix</groupId>
88         <artifactId>maven-bundle-plugin</artifactId>
89         <version>2.3.7</version>
90         <configuration>
91           <instructions>
92             <Import-Package>
93               org.apache.karaf.shell.console,
94               *
95             </Import-Package>
96           </instructions>
97         </configuration>
98       </plugin>
99     </plugins>
100   </build>
101 </project>