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