Clean up lambdas and streams
[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>config-parent</artifactId>
16     <version>0.5.0-SNAPSHOT</version>
17     <relativePath>../../commons/config-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>com.googlecode.java-ipv6</groupId>
65       <artifactId>java-ipv6</artifactId>
66       <version>0.16</version>
67     </dependency>
68
69     <!-- Dependencies used only by code under src/test (<scope>test) -->
70     <dependency>
71       <groupId>org.opendaylight.infrautils</groupId>
72       <artifactId>infrautils-testutils</artifactId>
73       <version>${infrautils.version}</version>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.infrautils</groupId>
78       <artifactId>inject.guice.testutils</artifactId>
79       <version>${infrautils.version}</version>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.genius</groupId>
84       <artifactId>mdsalutil-api</artifactId>
85       <version>${genius.version}</version>
86       <type>test-jar</type>
87       <scope>test</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.genius</groupId>
91       <artifactId>mdsalutil-testutils</artifactId>
92       <version>${genius.version}</version>
93       <scope>test</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.yangtools</groupId>
97       <artifactId>testutils</artifactId>
98       <scope>test</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.controller</groupId>
102       <artifactId>sal-binding-broker-impl</artifactId>
103       <type>test-jar</type>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.mdsal</groupId>
108       <artifactId>mdsal-binding-test-utils</artifactId>
109       <scope>test</scope>
110     </dependency>
111     <dependency>
112       <groupId>org.immutables</groupId>
113       <artifactId>value</artifactId>
114       <scope>test</scope>
115     </dependency>
116     <dependency>
117       <groupId>com.google.truth</groupId>
118       <artifactId>truth</artifactId>
119       <scope>test</scope>
120     </dependency>
121     <dependency>
122       <groupId>org.opendaylight.netvirt</groupId>
123       <artifactId>vpnmanager-api</artifactId>
124       <version>${project.version}</version>
125     </dependency>
126   </dependencies>
127
128   <build>
129     <plugins>
130       <plugin>
131         <groupId>org.eclipse.xtend</groupId>
132         <artifactId>xtend-maven-plugin</artifactId>
133       </plugin>
134       <plugin>
135         <groupId>org.codehaus.mojo</groupId>
136         <artifactId>build-helper-maven-plugin</artifactId>
137         <executions>
138           <execution>
139             <id>attach-artifacts</id>
140             <goals>
141               <goal>attach-artifact</goal>
142             </goals>
143             <phase>package</phase>
144             <configuration>
145               <artifacts>
146                 <artifact>
147                   <file>${project.build.directory}/classes/initial/netvirt-aclservice-config.xml</file>
148                   <type>xml</type>
149                   <classifier>config</classifier>
150                 </artifact>
151               </artifacts>
152             </configuration>
153           </execution>
154         </executions>
155       </plugin>
156       <plugin>
157         <groupId>org.apache.aries.blueprint</groupId>
158         <artifactId>blueprint-maven-plugin</artifactId>
159       </plugin>
160     </plugins>
161   </build>
162
163   <!--
164       Maven Site Configuration
165
166       The following configuration is necessary for maven-site-plugin to
167       correctly identify the correct deployment path for OpenDaylight Maven
168       sites.
169   -->
170   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
171
172   <distributionManagement>
173     <site>
174       <id>opendaylight-site</id>
175       <url>${nexus.site.url}/${project.artifactId}/</url>
176     </site>
177   </distributionManagement>
178 </project>