Merge "clean aclservice files"
[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.3.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.3.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   </dependencies>
64
65   <build>
66     <plugins>
67       <plugin>
68         <groupId>org.apache.maven.plugins</groupId>
69         <artifactId>maven-checkstyle-plugin</artifactId>
70         <configuration>
71           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
72         </configuration>
73       </plugin>
74     </plugins>
75   </build>
76
77   <!--
78       Maven Site Configuration
79
80       The following configuration is necessary for maven-site-plugin to
81       correctly identify the correct deployment path for OpenDaylight Maven
82       sites.
83   -->
84   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
85
86   <distributionManagement>
87     <site>
88       <id>opendaylight-site</id>
89       <url>${nexus.site.url}/${project.artifactId}/</url>
90     </site>
91   </distributionManagement>
92 </project>