Fixes Bug 6469
[netvirt.git] / vpnservice / aclservice / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
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   <groupId>org.opendaylight.netvirt</groupId>
21   <artifactId>aclservice-impl</artifactId>
22   <version>0.4.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <dependencies>
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>aclservice-api</artifactId>
28       <version>${project.version}</version>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal-binding-api</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal-binding-broker-impl</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.neutron</groupId>
40       <artifactId>model</artifactId>
41       <version>${neutron.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.genius</groupId>
45       <artifactId>mdsalutil-api</artifactId>
46       <version>${genius.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.genius</groupId>
50       <artifactId>interfacemanager-api</artifactId>
51       <version>${genius.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.ovsdb</groupId>
55       <artifactId>southbound-api</artifactId>
56       <version>${vpns.ovsdb.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>${project.groupId}</groupId>
60       <artifactId>neutronvpn-api</artifactId>
61       <version>${vpnservices.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.ovsdb</groupId>
65       <artifactId>utils.config</artifactId>
66       <version>${vpns.ovsdb.version}</version>
67     </dependency>
68      <dependency>
69       <groupId>org.opendaylight.netvirt</groupId>
70       <artifactId>elanmanager-api</artifactId>
71       <version>${vpnservices.version}</version>
72     </dependency>
73   </dependencies>
74
75   <build>
76     <plugins>
77       <plugin>
78         <groupId>org.apache.maven.plugins</groupId>
79         <artifactId>maven-checkstyle-plugin</artifactId>
80         <configuration>
81           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
82         </configuration>
83       </plugin>
84       <plugin>
85         <groupId>org.apache.felix</groupId>
86         <artifactId>maven-bundle-plugin</artifactId>
87         <extensions>true</extensions>
88         <configuration>
89           <instructions>
90             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
91             <Embed-Transitive>true</Embed-Transitive>
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/aclservice.cfg</file>
109                   <type>cfg</type>
110                   <classifier>config</classifier>
111                 </artifact>
112               </artifacts>
113             </configuration>
114           </execution>
115         </executions>
116       </plugin>
117     </plugins>
118   </build>
119
120   <!--
121       Maven Site Configuration
122
123       The following configuration is necessary for maven-site-plugin to
124       correctly identify the correct deployment path for OpenDaylight Maven
125       sites.
126   -->
127   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
128
129   <distributionManagement>
130     <site>
131       <id>opendaylight-site</id>
132       <url>${nexus.site.url}/${project.artifactId}/</url>
133     </site>
134   </distributionManagement>
135 </project>