Netvirt: Config Listener for Qos Alert patch2
[netvirt.git] / vpnservice / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11     <parent>
12         <groupId>org.opendaylight.netvirt</groupId>
13         <artifactId>config-parent</artifactId>
14         <version>0.4.0-SNAPSHOT</version>
15         <relativePath>../../commons/config-parent</relativePath>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>qosservice-impl</artifactId>
20     <name>ODL :: netvirt :: ${project.artifactId}</name>
21     <packaging>bundle</packaging>
22     <dependencies>
23        <dependency>
24             <groupId>org.opendaylight.genius</groupId>
25             <artifactId>mdsalutil-api</artifactId>
26             <version>${genius.version}</version>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.genius</groupId>
30             <artifactId>interfacemanager-api</artifactId>
31             <version>${genius.version}</version>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.ovsdb</groupId>
35             <artifactId>utils.southbound-utils</artifactId>
36             <version>1.4.0-SNAPSHOT</version>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.netvirt</groupId>
40             <artifactId>neutronvpn-api</artifactId>
41             <version>0.4.0-SNAPSHOT</version>
42         </dependency>
43         <dependency>
44             <groupId>com.google.truth</groupId>
45             <artifactId>truth</artifactId>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>qosservice-api</artifactId>
51             <version>${vpnservices.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.infrautils</groupId>
55             <artifactId>inject</artifactId>
56             <version>${infrautils.version}</version>
57         </dependency>
58
59     </dependencies>
60
61
62     <build>
63       <plugins>
64         <plugin>
65           <groupId>org.codehaus.mojo</groupId>
66           <artifactId>build-helper-maven-plugin</artifactId>
67           <executions>
68             <execution>
69               <id>attach-artifacts</id>
70               <goals>
71                 <goal>attach-artifact</goal>
72               </goals>
73               <phase>package</phase>
74               <configuration>
75                 <artifacts>
76                   <artifact>
77                     <file>${project.build.directory}/classes/initial/netvirt-qosalert-config.xml</file>
78                     <type>xml</type>
79                     <classifier>config</classifier>
80                   </artifact>
81                 </artifacts>
82               </configuration>
83             </execution>
84           </executions>
85         </plugin>
86         <plugin>
87           <groupId>org.apache.aries.blueprint</groupId>
88           <artifactId>blueprint-maven-plugin</artifactId>
89         </plugin>
90       </plugins>
91     </build>
92
93     <!--
94         Maven Site Configuration
95
96         The following configuration is necessary for maven-site-plugin to
97         correctly identify the correct deployment path for OpenDaylight Maven
98         sites.
99     -->
100     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
101
102     <distributionManagement>
103         <site>
104             <id>opendaylight-site</id>
105             <url>${nexus.site.url}/${project.artifactId}/</url>
106         </site>
107     </distributionManagement>
108 </project>