130e4ef1635e36f22988aebb559d860cb61ca50b
[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>binding-parent</artifactId>
15     <version>0.5.0-SNAPSHOT</version>
16     <relativePath>../../commons/binding-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>itm-impl</artifactId>
21   <version>0.5.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: genius :: ${project.artifactId}</name>
26
27   <dependencies>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>itm-api</artifactId>
31       <version>${project.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.genius</groupId>
35       <artifactId>interfacemanager-api</artifactId>
36       <version>${genius.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.genius</groupId>
40       <artifactId>mdsalutil-api</artifactId>
41       <version>${genius.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.infrautils</groupId>
45       <artifactId>diagstatus-api</artifactId>
46       <version>${genius.infrautils.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>org.ops4j.pax.cdi</groupId>
50       <artifactId>pax-cdi-api</artifactId>
51       <optional>true</optional>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>sal-binding-broker-impl</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.mdsal.model</groupId>
59       <artifactId>ietf-interfaces</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>javax.inject</groupId>
63       <artifactId>javax.inject</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.osgi</groupId>
67       <artifactId>org.osgi.core</artifactId>
68       <scope>provided</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.apache.karaf.shell</groupId>
72       <artifactId>org.apache.karaf.shell.console</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>com.google.guava</groupId>
76       <artifactId>guava</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>commons-net</groupId>
80       <artifactId>commons-net</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.genius</groupId>
84       <artifactId>idmanager-api</artifactId>
85       <version>${genius.version}</version>
86     </dependency>
87     <!-- Testing Dependencies -->
88     <dependency>
89       <groupId>org.opendaylight.genius</groupId>
90       <artifactId>testutils</artifactId>
91       <version>${genius.version}</version>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.genius</groupId>
96       <artifactId>lockmanager-impl</artifactId>
97       <version>${genius.version}</version>
98       <scope>test</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.genius</groupId>
102       <artifactId>idmanager-impl</artifactId>
103       <version>${genius.version}</version>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.genius</groupId>
108       <artifactId>interfacemanager-impl</artifactId>
109       <version>${genius.version}</version>
110       <scope>test</scope>
111     </dependency>
112     <dependency>
113       <groupId>junit</groupId>
114       <artifactId>junit</artifactId>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118       <groupId>org.mockito</groupId>
119       <artifactId>mockito-core</artifactId>
120       <scope>test</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.mdsal</groupId>
124       <artifactId>mdsal-binding-test-utils</artifactId>
125       <scope>test</scope>
126     </dependency>
127     <dependency>
128       <groupId>com.google.truth</groupId>
129       <artifactId>truth</artifactId>
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-module-junit4</artifactId>
139       <scope>test</scope>
140     </dependency>
141     <dependency>
142       <groupId>org.opendaylight.ovsdb</groupId>
143       <artifactId>utils.southbound-utils</artifactId>
144       <version>${genius.ovsdb.version}</version>
145       <scope>test</scope>
146     </dependency>
147     <dependency>
148       <groupId>org.opendaylight.genius</groupId>
149       <artifactId>mdsalutil-testutils</artifactId>
150       <version>${project.version}</version>
151       <scope>test</scope>
152     </dependency>
153     <dependency>
154       <groupId>org.opendaylight.infrautils</groupId>
155       <artifactId>caches-test</artifactId>
156       <version>${genius.infrautils.version}</version>
157       <scope>test</scope>
158     </dependency>
159   </dependencies>
160   <!--Build Dependencies-->
161   <build>
162     <plugins>
163       <plugin>
164         <groupId>org.codehaus.mojo</groupId>
165         <artifactId>build-helper-maven-plugin</artifactId>
166         <executions>
167           <execution>
168             <id>attach-artifacts</id>
169             <goals>
170               <goal>attach-artifact</goal>
171             </goals>
172             <phase>package</phase>
173             <configuration>
174               <artifacts>
175                 <artifact>
176                   <file>${project.build.directory}/classes/initial/genius-itm-config.xml</file>
177                   <type>xml</type>
178                   <classifier>config</classifier>
179                 </artifact>
180               </artifacts>
181             </configuration>
182           </execution>
183         </executions>
184       </plugin>
185       <plugin>
186         <groupId>org.apache.aries.blueprint</groupId>
187         <artifactId>blueprint-maven-plugin</artifactId>
188       </plugin>
189       <plugin>
190         <groupId>org.eclipse.xtend</groupId>
191         <artifactId>xtend-maven-plugin</artifactId>
192       </plugin>
193     </plugins>
194   </build>
195
196 </project>