Remove GENIUS UTIL references in NatService/Qos Modules
[netvirt.git] / natservice / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 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"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.netvirt</groupId>
14         <artifactId>binding-parent</artifactId>
15         <version>0.12.0-SNAPSHOT</version>
16         <relativePath>../../commons/binding-parent</relativePath>
17     </parent>
18
19     <artifactId>natservice-impl</artifactId>
20     <name>ODL :: netvirt :: ${project.artifactId}</name>
21     <packaging>bundle</packaging>
22     <modelVersion>4.0.0</modelVersion>
23
24     <dependencies>
25         <dependency>
26             <groupId>org.osgi</groupId>
27             <artifactId>org.osgi.core</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>commons-net</groupId>
31             <artifactId>commons-net</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.infrautils</groupId>
35             <artifactId>inject</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>javax.inject</groupId>
39             <artifactId>javax.inject</artifactId>
40             <scope>provided</scope>
41             <optional>true</optional>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller</groupId>
45             <artifactId>sal-common-util</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.apache.karaf.shell</groupId>
49             <artifactId>org.apache.karaf.shell.commands</artifactId>
50             <scope>provided</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.apache.karaf.shell</groupId>
54             <artifactId>org.apache.karaf.shell.console</artifactId>
55             <scope>provided</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.mdsal</groupId>
59             <artifactId>mdsal-binding-util</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.genius</groupId>
63             <artifactId>arputil-api</artifactId>
64             <version>${genius.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.serviceutils</groupId>
68             <artifactId>tools-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.serviceutils</groupId>
72             <artifactId>upgrade</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.genius</groupId>
76             <artifactId>idmanager-api</artifactId>
77             <version>${genius.version}</version>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.genius</groupId>
81             <artifactId>interfacemanager-api</artifactId>
82             <version>${genius.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.genius</groupId>
86             <artifactId>itm-api</artifactId>
87             <version>${genius.version}</version>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.genius</groupId>
91             <artifactId>mdsalutil-api</artifactId>
92             <version>${genius.version}</version>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.genius</groupId>
96             <artifactId>networkutils</artifactId>
97             <version>${genius.version}</version>
98         </dependency>
99         <dependency>
100             <groupId>${project.groupId}</groupId>
101             <artifactId>bgpmanager-api</artifactId>
102             <version>${project.version}</version>
103         </dependency>
104         <dependency>
105             <groupId>${project.groupId}</groupId>
106             <artifactId>elanmanager-api</artifactId>
107             <version>${project.version}</version>
108         </dependency>
109         <dependency>
110             <groupId>${project.groupId}</groupId>
111             <artifactId>fibmanager-api</artifactId>
112             <version>${project.version}</version>
113         </dependency>
114         <dependency>
115             <groupId>${project.groupId}</groupId>
116             <artifactId>natservice-api</artifactId>
117             <version>${project.version}</version>
118         </dependency>
119         <dependency>
120             <groupId>${project.groupId}</groupId>
121             <artifactId>neutronvpn-api</artifactId>
122             <version>${project.version}</version>
123         </dependency>
124         <dependency>
125             <groupId>${project.groupId}</groupId>
126             <artifactId>vpnmanager-api</artifactId>
127             <version>${project.version}</version>
128         </dependency>
129         <dependency>
130             <groupId>org.opendaylight.genius</groupId>
131             <artifactId>cloudscaler-api</artifactId>
132             <version>${genius.version}</version>
133         </dependency>
134         <dependency>
135             <groupId>org.opendaylight.openflowplugin.model</groupId>
136             <artifactId>model-flow-service</artifactId>
137         </dependency>
138         <dependency>
139             <groupId>com.google.code.findbugs</groupId>
140             <artifactId>jsr305</artifactId>
141             <version>3.0.2</version>
142             <optional>true</optional>
143         </dependency>
144     </dependencies>
145
146     <build>
147         <plugins>
148             <plugin>
149                 <groupId>org.apache.aries.blueprint</groupId>
150                 <artifactId>blueprint-maven-plugin</artifactId>
151             </plugin>
152             <plugin>
153                 <groupId>org.apache.felix</groupId>
154                 <artifactId>maven-bundle-plugin</artifactId>
155                 <extensions>true</extensions>
156                 <configuration>
157                     <instructions>
158                         <!-- We purposely don't export any packages to avoid any dependencies
159                              on this bundle and prevent @Singleton annotated classes from being
160                              accidently included in another bundle's blueprint XML  -->
161                         <Export-Package/>
162                     </instructions>
163                 </configuration>
164             </plugin>
165             <plugin>
166                 <groupId>org.codehaus.mojo</groupId>
167                 <artifactId>build-helper-maven-plugin</artifactId>
168                 <executions>
169                     <execution>
170                         <id>attach-artifacts</id>
171                         <goals>
172                             <goal>attach-artifact</goal>
173                         </goals>
174                         <phase>package</phase>
175                         <configuration>
176                             <artifacts>
177                                 <artifact>
178                                     <file>${project.build.directory}/classes/initial/netvirt-natservice-config.xml
179                                     </file>
180                                     <type>xml</type>
181                                     <classifier>config</classifier>
182                                 </artifact>
183                             </artifacts>
184                         </configuration>
185                     </execution>
186                 </executions>
187             </plugin>
188         </plugins>
189     </build>
190 </project>