Release Magnesium
[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.10.0</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.osgi</groupId>
27             <artifactId>org.osgi.core</artifactId>
28             <scope>provided</scope>
29         </dependency>
30         <dependency>
31             <groupId>org.apache.karaf.shell</groupId>
32             <artifactId>org.apache.karaf.shell.console</artifactId>
33             <scope>provided</scope>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.genius</groupId>
37             <artifactId>interfacemanager-api</artifactId>
38             <version>${genius.version}</version>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.genius</groupId>
42             <artifactId>mdsalutil-api</artifactId>
43             <version>${genius.version}</version>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.serviceutils</groupId>
47             <artifactId>srm-api</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.infrautils</groupId>
51             <artifactId>inject</artifactId>
52             <version>${infrautils.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>neutronvpn-api</artifactId>
57             <version>${project.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>qosservice-api</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.ovsdb</groupId>
66             <artifactId>utils.southbound-utils</artifactId>
67             <version>${ovsdb.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>com.google.truth</groupId>
71             <artifactId>truth</artifactId>
72             <scope>test</scope>
73         </dependency>
74     </dependencies>
75
76     <build>
77         <plugins>
78             <plugin>
79                 <groupId>org.apache.aries.blueprint</groupId>
80                 <artifactId>blueprint-maven-plugin</artifactId>
81             </plugin>
82             <plugin>
83                 <groupId>org.apache.felix</groupId>
84                 <artifactId>maven-bundle-plugin</artifactId>
85                 <extensions>true</extensions>
86                 <configuration>
87                     <instructions>
88                         <!-- We purposely don't export any packages to avoid any dependencies
89                            on this bundle and prevent @Singleton annotated classes from being
90                            accidently included in another bundle's blueprint XML  -->
91                         <Export-Package/>
92                     </instructions>
93                 </configuration>
94             </plugin>
95             <plugin>
96                 <groupId>org.codehaus.mojo</groupId>
97                 <artifactId>build-helper-maven-plugin</artifactId>
98                 <executions>
99                     <execution>
100                         <id>attach-artifacts</id>
101                         <goals>
102                             <goal>attach-artifact</goal>
103                         </goals>
104                         <phase>package</phase>
105                         <configuration>
106                             <artifacts>
107                                 <artifact>
108                                     <file>${project.build.directory}/classes/initial/netvirt-qosservice-config.xml
109                                     </file>
110                                     <type>xml</type>
111                                     <classifier>config</classifier>
112                                 </artifact>
113                                 <artifact>
114                                     <file>${project.build.directory}/classes/initial/qosservice.cfg</file>
115                                     <type>cfg</type>
116                                     <classifier>config</classifier>
117                                 </artifact>
118                             </artifacts>
119                         </configuration>
120                     </execution>
121                 </executions>
122             </plugin>
123         </plugins>
124     </build>
125 </project>