30ee2d351079b0d54f3f84c371dbdf6078d3276e
[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.11.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         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.infrautils</groupId>
68             <artifactId>inject</artifactId>
69             <version>${infrautils.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.infrautils</groupId>
73             <artifactId>jobcoordinator-impl</artifactId>
74             <version>${infrautils.version}</version>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>com.googlecode.java-ipv6</groupId>
79             <artifactId>java-ipv6</artifactId>
80             <version>0.16</version>
81         </dependency>
82         <dependency>
83             <groupId>org.apache.karaf.shell</groupId>
84             <artifactId>org.apache.karaf.shell.console</artifactId>
85             <scope>provided</scope>
86         </dependency>
87
88         <!-- Dependencies used only by code under src/test (<scope>test) -->
89         <dependency>
90             <groupId>org.opendaylight.infrautils</groupId>
91             <artifactId>infrautils-testutils</artifactId>
92             <version>${infrautils.version}</version>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.infrautils</groupId>
97             <artifactId>inject.guice.testutils</artifactId>
98             <version>${infrautils.version}</version>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.genius</groupId>
103             <artifactId>mdsalutil-api</artifactId>
104             <version>${genius.version}</version>
105             <type>test-jar</type>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.genius</groupId>
110             <artifactId>mdsalutil-testutils</artifactId>
111             <version>${genius.version}</version>
112             <scope>test</scope>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.genius</groupId>
116             <artifactId>testutils</artifactId>
117             <version>${genius.version}</version>
118             <scope>test</scope>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.genius</groupId>
122             <artifactId>interfacemanager-impl</artifactId>
123             <version>${genius.version}</version>
124             <scope>test</scope>
125         </dependency>
126         <dependency>
127             <groupId>org.opendaylight.yangtools</groupId>
128             <artifactId>testutils</artifactId>
129             <scope>test</scope>
130         </dependency>
131         <dependency>
132             <groupId>org.opendaylight.controller</groupId>
133             <artifactId>sal-binding-broker-impl</artifactId>
134             <type>test-jar</type>
135             <scope>test</scope>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.mdsal</groupId>
139             <artifactId>mdsal-binding-test-utils</artifactId>
140             <scope>test</scope>
141         </dependency>
142         <dependency>
143             <groupId>org.immutables</groupId>
144             <artifactId>value</artifactId>
145             <classifier>annotations</classifier>
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             </plugin>
201         </plugins>
202     </build>
203 </project>