Add project info to name in pom files
[netvirt.git] / vpnservice / dhcpservice / dhcpservice-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2015 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>dhcpservice-impl</artifactId>
20   <name>ODL :: netvirt :: ${project.artifactId}</name>
21   <packaging>bundle</packaging>
22   <dependencies>
23     <dependency>
24       <groupId>${project.groupId}</groupId>
25       <artifactId>dhcpservice-api</artifactId>
26       <version>${vpnservices.version}</version>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>sal-binding-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.openflowplugin.model</groupId>
34       <artifactId>model-flow-service</artifactId>
35       <version>${openflowplugin.version}</version>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.genius</groupId>
39       <artifactId>mdsalutil-api</artifactId>
40       <version>${genius.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>${project.groupId}</groupId>
44       <artifactId>neutronvpn-api</artifactId>
45       <version>${vpnservices.version}</version>
46     </dependency>
47     <dependency>
48       <groupId>org.apache.karaf.shell</groupId>
49       <artifactId>org.apache.karaf.shell.console</artifactId>
50       <version>${karaf.shell.console.version}</version>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.neutron</groupId>
54       <artifactId>model</artifactId>
55       <version>${neutron.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>commons-net</groupId>
59       <artifactId>commons-net</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.genius</groupId>
63       <artifactId>interfacemanager-api</artifactId>
64       <version>${genius.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>${project.groupId}</groupId>
68       <artifactId>elanmanager-api</artifactId>
69       <version>${vpnservices.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.genius</groupId>
73       <artifactId>itm-api</artifactId>
74       <version>${genius.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.ovsdb</groupId>
78       <artifactId>hwvtepsouthbound-api</artifactId>
79       <version>${vpns.ovsdb.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.infrautils</groupId>
83       <artifactId>counters-api</artifactId>
84       <version>${infrautils.version}</version>
85     </dependency>
86    </dependencies>
87
88
89   <build>
90     <plugins>
91       <plugin>
92         <groupId>org.codehaus.mojo</groupId>
93         <artifactId>build-helper-maven-plugin</artifactId>
94         <executions>
95           <execution>
96             <id>attach-artifacts</id>
97             <goals>
98               <goal>attach-artifact</goal>
99             </goals>
100             <phase>package</phase>
101             <configuration>
102               <artifacts>
103                 <artifact>
104                   <file>${project.build.directory}/classes/initial/netvirt-dhcpservice-config.xml</file>
105                   <type>xml</type>
106                   <classifier>config</classifier>
107                 </artifact>
108               </artifacts>
109             </configuration>
110           </execution>
111         </executions>
112       </plugin>
113     </plugins>
114   </build>
115   <!--
116       Maven Site Configuration
117
118       The following configuration is necessary for maven-site-plugin to
119       correctly identify the correct deployment path for OpenDaylight Maven
120       sites.
121   -->
122   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
123
124   <distributionManagement>
125     <site>
126       <id>opendaylight-site</id>
127       <url>${nexus.site.url}/${project.artifactId}/</url>
128     </site>
129   </distributionManagement>
130 </project>