Blueprint migration 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.2.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.2.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     <dependency>
49       <groupId>javax.inject</groupId>
50       <artifactId>javax.inject</artifactId>
51     </dependency>
52     <!-- Testing Dependencies -->
53     <dependency>
54       <groupId>junit</groupId>
55       <artifactId>junit</artifactId>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.mockito</groupId>
60       <artifactId>mockito-all</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.osgi</groupId>
65       <artifactId>org.osgi.core</artifactId>
66       <scope>provided</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.apache.karaf.shell</groupId>
70       <artifactId>org.apache.karaf.shell.console</artifactId>
71       <version>${karaf.shell.console.version}</version>
72     </dependency>
73     <dependency>
74       <groupId>com.google.guava</groupId>
75       <artifactId>guava</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>commons-net</groupId>
79       <artifactId>commons-net</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.genius</groupId>
83       <artifactId>idmanager-api</artifactId>
84       <version>${genius.version}</version>
85     </dependency>
86   </dependencies>
87   <!--Build Dependencies-->
88   <build>
89     <plugins>
90       <plugin>
91         <groupId>org.apache.aries.blueprint</groupId>
92         <artifactId>blueprint-maven-plugin</artifactId>
93       </plugin>
94     </plugins>
95   </build>
96 </project>