Merge "ITM Tep Auto Config Unit test using Guice."
[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   <!-- <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.controller</groupId>
45       <artifactId>sal-binding-broker-impl</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.mdsal.model</groupId>
49       <artifactId>ietf-interfaces</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>javax.inject</groupId>
53       <artifactId>javax.inject</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.osgi</groupId>
57       <artifactId>org.osgi.core</artifactId>
58       <scope>provided</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.apache.karaf.shell</groupId>
62       <artifactId>org.apache.karaf.shell.console</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>com.google.guava</groupId>
66       <artifactId>guava</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>commons-net</groupId>
70       <artifactId>commons-net</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.genius</groupId>
74       <artifactId>idmanager-api</artifactId>
75       <version>${genius.version}</version>
76     </dependency>
77     <!-- Testing Dependencies -->
78     <dependency>
79       <groupId>org.opendaylight.genius</groupId>
80       <artifactId>testutils</artifactId>
81       <version>${genius.version}</version>
82       <type>pom</type>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.genius</groupId>
87       <artifactId>lockmanager-impl</artifactId>
88       <version>${genius.version}</version>
89       <scope>test</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.genius</groupId>
93       <artifactId>idmanager-impl</artifactId>
94       <version>${genius.version}</version>
95       <scope>test</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.genius</groupId>
99       <artifactId>interfacemanager-impl</artifactId>
100       <version>${genius.version}</version>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>junit</groupId>
105       <artifactId>junit</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.mockito</groupId>
110       <artifactId>mockito-core</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.mdsal</groupId>
115       <artifactId>mdsal-binding-test-utils</artifactId>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>com.google.truth</groupId>
120       <artifactId>truth</artifactId>
121       </dependency>
122     <dependency>
123       <groupId>org.powermock</groupId>
124       <artifactId>powermock-api-mockito</artifactId>
125       <scope>test</scope>
126     </dependency>
127     <dependency>
128       <groupId>org.powermock</groupId>
129       <artifactId>powermock-module-junit4</artifactId>
130       <scope>test</scope>
131     </dependency>
132     <dependency>
133       <groupId>org.opendaylight.ovsdb</groupId>
134       <artifactId>utils.southbound-utils</artifactId>
135       <version>${genius.ovsdb.version}</version>
136       <scope>test</scope>
137     </dependency>
138   </dependencies>
139   <!--Build Dependencies-->
140   <build>
141     <plugins>
142       <plugin>
143         <groupId>org.codehaus.mojo</groupId>
144         <artifactId>build-helper-maven-plugin</artifactId>
145         <executions>
146           <execution>
147             <id>attach-artifacts</id>
148             <goals>
149               <goal>attach-artifact</goal>
150             </goals>
151             <phase>package</phase>
152             <configuration>
153               <artifacts>
154                 <artifact>
155                   <file>${project.build.directory}/classes/initial/genius-itm-config.xml</file>
156                   <type>xml</type>
157                   <classifier>config</classifier>
158                 </artifact>
159               </artifacts>
160             </configuration>
161           </execution>
162         </executions>
163       </plugin>
164       <plugin>
165         <groupId>org.apache.aries.blueprint</groupId>
166         <artifactId>blueprint-maven-plugin</artifactId>
167       </plugin>
168       <plugin>
169         <groupId>org.eclipse.xtend</groupId>
170         <artifactId>xtend-maven-plugin</artifactId>
171       </plugin>
172       <plugin>
173         <groupId>org.apache.maven.plugins</groupId>
174         <artifactId>maven-checkstyle-plugin</artifactId>
175         <configuration>
176           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
177         </configuration>
178       </plugin>
179     </plugins>
180   </build>
181
182   <!--
183      Maven Site Configuration
184
185      The following configuration is necessary for maven-site-plugin to
186      correctly identify the correct deployment path for OpenDaylight Maven
187      sites.
188  -->
189   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
190
191   <distributionManagement>
192     <site>
193       <id>opendaylight-site</id>
194       <url>${nexus.site.url}/${project.artifactId}/</url>
195     </site>
196   </distributionManagement>
197 </project>