Bump to odlparent 3.1.3
[netvirt.git] / aclservice / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11     <parent>
12         <groupId>org.opendaylight.netvirt</groupId>
13         <artifactId>binding-parent</artifactId>
14         <version>0.7.0-SNAPSHOT</version>
15         <relativePath>../../commons/binding-parent</relativePath>
16     </parent>
17
18     <artifactId>aclservice-impl</artifactId>
19     <name>ODL :: netvirt :: ${project.artifactId}</name>
20     <packaging>bundle</packaging>
21     <modelVersion>4.0.0</modelVersion>
22
23     <dependencies>
24         <dependency>
25             <groupId>org.osgi</groupId>
26             <artifactId>org.osgi.core</artifactId>
27             <scope>provided</scope>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>aclservice-api</artifactId>
32             <version>${project.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.controller</groupId>
36             <artifactId>sal-binding-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.controller</groupId>
40             <artifactId>sal-binding-broker-impl</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.genius</groupId>
44             <artifactId>mdsalutil-api</artifactId>
45             <version>${genius.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.genius</groupId>
49             <artifactId>interfacemanager-api</artifactId>
50             <version>${genius.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>elanmanager-api</artifactId>
55             <version>${project.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.genius</groupId>
59             <artifactId>idmanager-api</artifactId>
60             <version>${genius.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.serviceutils</groupId>
64             <artifactId>srm-api</artifactId>
65             <version>0.2.0-SNAPSHOT</version>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.infrautils</groupId>
69             <artifactId>inject</artifactId>
70             <version>${infrautils.version}</version>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.infrautils</groupId>
74             <artifactId>jobcoordinator-impl</artifactId>
75             <version>${infrautils.version}</version>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>com.googlecode.java-ipv6</groupId>
80             <artifactId>java-ipv6</artifactId>
81             <version>0.16</version>
82         </dependency>
83         <dependency>
84             <groupId>org.apache.karaf.shell</groupId>
85             <artifactId>org.apache.karaf.shell.console</artifactId>
86             <scope>provided</scope>
87         </dependency>
88
89         <!-- Dependencies used only by code under src/test (<scope>test) -->
90         <dependency>
91             <groupId>org.opendaylight.infrautils</groupId>
92             <artifactId>infrautils-testutils</artifactId>
93             <version>${infrautils.version}</version>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.infrautils</groupId>
98             <artifactId>inject.guice.testutils</artifactId>
99             <version>${infrautils.version}</version>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.genius</groupId>
104             <artifactId>mdsalutil-api</artifactId>
105             <version>${genius.version}</version>
106             <type>test-jar</type>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.genius</groupId>
111             <artifactId>mdsalutil-testutils</artifactId>
112             <version>${genius.version}</version>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.opendaylight.genius</groupId>
117             <artifactId>testutils</artifactId>
118             <version>${genius.version}</version>
119             <scope>test</scope>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.genius</groupId>
123             <artifactId>interfacemanager-impl</artifactId>
124             <version>${genius.version}</version>
125             <scope>test</scope>
126         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.yangtools</groupId>
129             <artifactId>testutils</artifactId>
130             <scope>test</scope>
131         </dependency>
132         <dependency>
133             <groupId>org.opendaylight.controller</groupId>
134             <artifactId>sal-binding-broker-impl</artifactId>
135             <type>test-jar</type>
136             <scope>test</scope>
137         </dependency>
138         <dependency>
139             <groupId>org.opendaylight.mdsal</groupId>
140             <artifactId>mdsal-binding-test-utils</artifactId>
141             <scope>test</scope>
142         </dependency>
143         <dependency>
144             <groupId>org.immutables</groupId>
145             <artifactId>value</artifactId>
146             <scope>test</scope>
147         </dependency>
148         <dependency>
149             <groupId>com.google.truth</groupId>
150             <artifactId>truth</artifactId>
151             <scope>test</scope>
152         </dependency>
153     </dependencies>
154
155     <build>
156         <plugins>
157             <plugin>
158                 <groupId>org.apache.aries.blueprint</groupId>
159                 <artifactId>blueprint-maven-plugin</artifactId>
160             </plugin>
161             <plugin>
162                 <groupId>org.apache.felix</groupId>
163                 <artifactId>maven-bundle-plugin</artifactId>
164                 <extensions>true</extensions>
165                 <configuration>
166                     <instructions>
167                         <!-- We purposely don't export any packages to avoid any dependencies
168                              on this bundle and prevent @Singleton annotated classes from being
169                              accidently included in another bundle's blueprint XML  -->
170                         <Export-Package/>
171                     </instructions>
172                 </configuration>
173             </plugin>
174             <plugin>
175                 <groupId>org.codehaus.mojo</groupId>
176                 <artifactId>build-helper-maven-plugin</artifactId>
177                 <executions>
178                     <execution>
179                         <id>attach-artifacts</id>
180                         <goals>
181                             <goal>attach-artifact</goal>
182                         </goals>
183                         <phase>package</phase>
184                         <configuration>
185                             <artifacts>
186                                 <artifact>
187                                     <file>${project.build.directory}/classes/initial/netvirt-aclservice-config.xml
188                                     </file>
189                                     <type>xml</type>
190                                     <classifier>config</classifier>
191                                 </artifact>
192                             </artifacts>
193                         </configuration>
194                     </execution>
195                 </executions>
196             </plugin>
197             <plugin>
198                 <groupId>org.eclipse.xtend</groupId>
199                 <artifactId>xtend-maven-plugin</artifactId>
200                 <dependencies>
201                     <dependency>
202                         <groupId>org.eclipse.platform</groupId>
203                         <artifactId>org.eclipse.equinox.common</artifactId>
204                         <version>3.10.0</version>
205                     </dependency>
206                 </dependencies>
207             </plugin>
208         </plugins>
209     </build>
210 </project>