a1c95de9f4864cf03a29985274b6524f6c4828f3
[netvirt.git] / vpnservice / neutronvpn / neutronvpn-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>config-parent</artifactId>
15     <version>0.4.0-SNAPSHOT</version>
16     <relativePath>../../commons/config-parent</relativePath>
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <artifactId>neutronvpn-impl</artifactId>
21   <packaging>bundle</packaging>
22   <dependencies>
23     <dependency>
24       <groupId>org.opendaylight.neutron</groupId>
25       <artifactId>model</artifactId>
26       <version>${neutron.version}</version>
27     </dependency>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>neutronvpn-api</artifactId>
31       <version>${vpnservices.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>${project.groupId}</groupId>
35       <artifactId>vpnmanager-api</artifactId>
36       <version>${vpnservices.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>elanmanager-api</artifactId>
41       <version>${vpnservices.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.genius</groupId>
45       <artifactId>arputil-api</artifactId>
46       <version>${genius.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.genius</groupId>
50       <artifactId>mdsalutil-api</artifactId>
51       <version>${genius.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.genius</groupId>
55       <artifactId>itm-api</artifactId>
56       <version>${genius.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.ovsdb</groupId>
60       <artifactId>hwvtepsouthbound-api</artifactId>
61       <version>${vpns.ovsdb.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>natservice-api</artifactId>
66       <version>${vpnservices.version}</version>
67     </dependency>
68     <dependency>
69       <groupId>${project.groupId}</groupId>
70       <artifactId>aclservice-api</artifactId>
71       <version>${vpnservices.version}</version>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.genius</groupId>
75       <artifactId>idmanager-api</artifactId>
76       <version>${genius.version}</version>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.ovsdb</groupId>
80       <artifactId>southbound-api</artifactId>
81       <version>${vpns.ovsdb.version}</version>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.ovsdb</groupId>
85       <artifactId>utils.mdsal-utils</artifactId>
86       <version>${vpns.ovsdb.version}</version>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.ovsdb</groupId>
90       <artifactId>utils.southbound-utils</artifactId>
91       <version>${vpns.ovsdb.version}</version>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.ovsdb</groupId>
95       <artifactId>utils.config</artifactId>
96       <version>${vpns.ovsdb.version}</version>
97     </dependency>
98   </dependencies>
99
100   <!--
101       Maven Site Configuration
102
103       The following configuration is necessary for maven-site-plugin to
104       correctly identify the correct deployment path for OpenDaylight Maven
105       sites.
106   -->
107   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
108
109   <distributionManagement>
110     <site>
111       <id>opendaylight-site</id>
112       <url>${nexus.site.url}/${project.artifactId}/</url>
113     </site>
114   </distributionManagement>
115   <build>
116     <plugins>
117       <plugin>
118         <groupId>org.apache.maven.plugins</groupId>
119         <artifactId>maven-checkstyle-plugin</artifactId>
120         <configuration>
121           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
122         </configuration>
123       </plugin>
124       <plugin>
125         <groupId>org.apache.felix</groupId>
126         <artifactId>maven-bundle-plugin</artifactId>
127         <extensions>true</extensions>
128         <configuration>
129           <instructions>
130             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
131             <Embed-Transitive>true</Embed-Transitive>
132           </instructions>
133         </configuration>
134       </plugin>
135       <plugin>
136         <groupId>org.codehaus.mojo</groupId>
137         <artifactId>build-helper-maven-plugin</artifactId>
138         <executions>
139           <execution>
140             <id>attach-artifacts</id>
141             <goals>
142               <goal>attach-artifact</goal>
143             </goals>
144             <phase>package</phase>
145             <configuration>
146               <artifacts>
147                 <artifact>
148                   <file>${project.build.directory}/classes/initial/netvirt-neutronvpn-config.xml</file>
149                   <type>xml</type>
150                   <classifier>config</classifier>
151                 </artifact>
152               </artifacts>
153             </configuration>
154           </execution>
155         </executions>
156       </plugin>
157     </plugins>
158   </build>
159
160 </project>