Changes are related to provide a command to display acl caches.
[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   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.netvirt</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>0.6.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <artifactId>aclservice-impl</artifactId>
21   <name>ODL :: netvirt :: ${project.artifactId}</name>
22   <packaging>bundle</packaging>
23
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.genius</groupId>
40       <artifactId>mdsalutil-api</artifactId>
41       <version>${genius.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.genius</groupId>
45       <artifactId>interfacemanager-api</artifactId>
46       <version>${genius.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>${project.groupId}</groupId>
50       <artifactId>elanmanager-api</artifactId>
51       <version>${project.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.genius</groupId>
55       <artifactId>idmanager-api</artifactId>
56       <version>${genius.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.infrautils</groupId>
60       <artifactId>inject</artifactId>
61       <version>${infrautils.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.infrautils</groupId>
65       <artifactId>jobcoordinator-impl</artifactId>
66       <version>${infrautils.version}</version>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>com.googlecode.java-ipv6</groupId>
71       <artifactId>java-ipv6</artifactId>
72       <version>0.16</version>
73     </dependency>
74
75     <!-- Dependencies used only by code under src/test (<scope>test) -->
76     <dependency>
77       <groupId>org.opendaylight.infrautils</groupId>
78       <artifactId>infrautils-testutils</artifactId>
79       <version>${infrautils.version}</version>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.infrautils</groupId>
84       <artifactId>inject.guice.testutils</artifactId>
85       <version>${infrautils.version}</version>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.genius</groupId>
90       <artifactId>mdsalutil-api</artifactId>
91       <version>${genius.version}</version>
92       <type>test-jar</type>
93       <scope>test</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.genius</groupId>
97       <artifactId>mdsalutil-testutils</artifactId>
98       <version>${genius.version}</version>
99       <scope>test</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.genius</groupId>
103       <artifactId>testutils</artifactId>
104       <version>${genius.version}</version>
105       <scope>test</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.genius</groupId>
109       <artifactId>interfacemanager-impl</artifactId>
110       <version>${genius.version}</version>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.yangtools</groupId>
115       <artifactId>testutils</artifactId>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.controller</groupId>
120       <artifactId>sal-binding-broker-impl</artifactId>
121       <type>test-jar</type>
122       <scope>test</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.opendaylight.mdsal</groupId>
126       <artifactId>mdsal-binding-test-utils</artifactId>
127       <scope>test</scope>
128     </dependency>
129     <dependency>
130       <groupId>org.immutables</groupId>
131       <artifactId>value</artifactId>
132       <scope>test</scope>
133     </dependency>
134     <dependency>
135       <groupId>com.google.truth</groupId>
136       <artifactId>truth</artifactId>
137       <scope>test</scope>
138     </dependency>
139     <dependency>
140       <groupId>org.apache.karaf.shell</groupId>
141       <artifactId>org.apache.karaf.shell.console</artifactId>
142       <scope>provided</scope>
143     </dependency>
144     <dependency>
145       <groupId>org.opendaylight.netvirt</groupId>
146       <artifactId>vpnmanager-api</artifactId>
147       <version>${project.version}</version>
148     </dependency>
149   </dependencies>
150
151   <build>
152     <plugins>
153       <plugin>
154         <groupId>org.eclipse.xtend</groupId>
155         <artifactId>xtend-maven-plugin</artifactId>
156       </plugin>
157       <plugin>
158         <groupId>org.codehaus.mojo</groupId>
159         <artifactId>build-helper-maven-plugin</artifactId>
160         <executions>
161           <execution>
162             <id>attach-artifacts</id>
163             <goals>
164               <goal>attach-artifact</goal>
165             </goals>
166             <phase>package</phase>
167             <configuration>
168               <artifacts>
169                 <artifact>
170                   <file>${project.build.directory}/classes/initial/netvirt-aclservice-config.xml</file>
171                   <type>xml</type>
172                   <classifier>config</classifier>
173                 </artifact>
174               </artifacts>
175             </configuration>
176           </execution>
177         </executions>
178       </plugin>
179       <plugin>
180         <groupId>org.apache.aries.blueprint</groupId>
181         <artifactId>blueprint-maven-plugin</artifactId>
182       </plugin>
183     </plugins>
184   </build>
185
186   <!--
187       Maven Site Configuration
188
189       The following configuration is necessary for maven-site-plugin to
190       correctly identify the correct deployment path for OpenDaylight Maven
191       sites.
192   -->
193   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
194
195   <distributionManagement>
196     <site>
197       <id>opendaylight-site</id>
198       <url>${nexus.site.url}/${project.artifactId}/</url>
199     </site>
200   </distributionManagement>
201 </project>