Revert "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
78     <!-- Testing Dependencies (<scope>test) -->
79     <dependency>
80       <groupId>org.opendaylight.genius</groupId>
81       <artifactId>testutils</artifactId>
82       <version>${genius.version}</version>
83       <type>pom</type>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.genius</groupId>
88       <artifactId>lockmanager-impl</artifactId>
89       <version>${genius.version}</version>
90       <scope>test</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.genius</groupId>
94       <artifactId>idmanager-impl</artifactId>
95       <version>${genius.version}</version>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.genius</groupId>
100       <artifactId>interfacemanager-impl</artifactId>
101       <version>${genius.version}</version>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>junit</groupId>
106       <artifactId>junit</artifactId>
107       <scope>test</scope>
108     </dependency>
109     <dependency>
110       <groupId>org.mockito</groupId>
111       <artifactId>mockito-core</artifactId>
112       <scope>test</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.mdsal</groupId>
116       <artifactId>mdsal-binding-test-utils</artifactId>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>com.google.truth</groupId>
121       <artifactId>truth</artifactId>
122       </dependency>
123     <dependency>
124       <groupId>org.powermock</groupId>
125       <artifactId>powermock-api-mockito</artifactId>
126       <scope>test</scope>
127     </dependency>
128     <dependency>
129       <groupId>org.powermock</groupId>
130       <artifactId>powermock-module-junit4</artifactId>
131       <scope>test</scope>
132     </dependency>
133   </dependencies>
134
135   <build>
136     <plugins>
137       <plugin>
138         <groupId>org.codehaus.mojo</groupId>
139         <artifactId>build-helper-maven-plugin</artifactId>
140         <executions>
141           <execution>
142             <id>attach-artifacts</id>
143             <goals>
144               <goal>attach-artifact</goal>
145             </goals>
146             <phase>package</phase>
147             <configuration>
148               <artifacts>
149                 <artifact>
150                   <file>${project.build.directory}/classes/initial/genius-itm-config.xml</file>
151                   <type>xml</type>
152                   <classifier>config</classifier>
153                 </artifact>
154               </artifacts>
155             </configuration>
156           </execution>
157         </executions>
158       </plugin>
159       <plugin>
160         <groupId>org.apache.aries.blueprint</groupId>
161         <artifactId>blueprint-maven-plugin</artifactId>
162       </plugin>
163       <plugin>
164         <groupId>org.eclipse.xtend</groupId>
165         <artifactId>xtend-maven-plugin</artifactId>
166       </plugin>
167     </plugins>
168   </build>
169
170   <!--
171      Maven Site Configuration
172
173      The following configuration is necessary for maven-site-plugin to
174      correctly identify the correct deployment path for OpenDaylight Maven
175      sites.
176  -->
177   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
178
179   <distributionManagement>
180     <site>
181       <id>opendaylight-site</id>
182       <url>${nexus.site.url}/${project.artifactId}/</url>
183     </site>
184   </distributionManagement>
185 </project>