Remove GENIUS UTIL references in NatService/Qos Modules
[netvirt.git] / qosservice / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2017 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>qosservice-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.opendaylight.mdsal</groupId>
27             <artifactId>mdsal-binding-util</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.osgi</groupId>
31             <artifactId>org.osgi.core</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.apache.karaf.shell</groupId>
35             <artifactId>org.apache.karaf.shell.console</artifactId>
36             <scope>provided</scope>
37         </dependency>
38         <dependency>
39             <groupId>javax.inject</groupId>
40             <artifactId>javax.inject</artifactId>
41             <scope>provided</scope>
42             <optional>true</optional>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.genius</groupId>
46             <artifactId>interfacemanager-api</artifactId>
47             <version>${genius.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.genius</groupId>
51             <artifactId>mdsalutil-api</artifactId>
52             <version>${genius.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.serviceutils</groupId>
56             <artifactId>srm-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>neutronvpn-api</artifactId>
61             <version>${project.version}</version>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>qosservice-api</artifactId>
66             <version>${project.version}</version>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.ovsdb</groupId>
70             <artifactId>utils.southbound-utils</artifactId>
71             <version>${ovsdb.version}</version>
72         </dependency>
73         <dependency>
74             <groupId>com.google.truth</groupId>
75             <artifactId>truth</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>com.google.code.gson</groupId>
80             <artifactId>gson</artifactId>
81         </dependency>
82     </dependencies>
83
84     <build>
85         <plugins>
86             <plugin>
87                 <groupId>org.apache.aries.blueprint</groupId>
88                 <artifactId>blueprint-maven-plugin</artifactId>
89             </plugin>
90             <plugin>
91                 <groupId>org.apache.felix</groupId>
92                 <artifactId>maven-bundle-plugin</artifactId>
93                 <extensions>true</extensions>
94                 <configuration>
95                     <instructions>
96                         <!-- We purposely don't export any packages to avoid any dependencies
97                            on this bundle and prevent @Singleton annotated classes from being
98                            accidently included in another bundle's blueprint XML  -->
99                         <Export-Package/>
100                     </instructions>
101                 </configuration>
102             </plugin>
103             <plugin>
104                 <groupId>org.codehaus.mojo</groupId>
105                 <artifactId>build-helper-maven-plugin</artifactId>
106                 <executions>
107                     <execution>
108                         <id>attach-artifacts</id>
109                         <goals>
110                             <goal>attach-artifact</goal>
111                         </goals>
112                         <phase>package</phase>
113                         <configuration>
114                             <artifacts>
115                                 <artifact>
116                                     <file>${project.build.directory}/classes/initial/netvirt-qosservice-config.xml
117                                     </file>
118                                     <type>xml</type>
119                                     <classifier>config</classifier>
120                                 </artifact>
121                                 <artifact>
122                                     <file>${project.build.directory}/classes/initial/qosservice.cfg</file>
123                                     <type>cfg</type>
124                                     <classifier>config</classifier>
125                                 </artifact>
126                             </artifacts>
127                         </configuration>
128                     </execution>
129                 </executions>
130             </plugin>
131         </plugins>
132     </build>
133 </project>