8adda809eff0dc7005957743509f92e640f665fc
[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.9.1-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             <scope>test</scope>
146         </dependency>
147         <dependency>
148             <groupId>com.google.truth</groupId>
149             <artifactId>truth</artifactId>
150             <scope>test</scope>
151         </dependency>
152     </dependencies>
153
154     <build>
155         <plugins>
156             <plugin>
157                 <groupId>org.apache.aries.blueprint</groupId>
158                 <artifactId>blueprint-maven-plugin</artifactId>
159             </plugin>
160             <plugin>
161                 <groupId>org.apache.felix</groupId>
162                 <artifactId>maven-bundle-plugin</artifactId>
163                 <extensions>true</extensions>
164                 <configuration>
165                     <instructions>
166                         <!-- We purposely don't export any packages to avoid any dependencies
167                              on this bundle and prevent @Singleton annotated classes from being
168                              accidently included in another bundle's blueprint XML  -->
169                         <Export-Package/>
170                     </instructions>
171                 </configuration>
172             </plugin>
173             <plugin>
174                 <groupId>org.codehaus.mojo</groupId>
175                 <artifactId>build-helper-maven-plugin</artifactId>
176                 <executions>
177                     <execution>
178                         <id>attach-artifacts</id>
179                         <goals>
180                             <goal>attach-artifact</goal>
181                         </goals>
182                         <phase>package</phase>
183                         <configuration>
184                             <artifacts>
185                                 <artifact>
186                                     <file>${project.build.directory}/classes/initial/netvirt-aclservice-config.xml
187                                     </file>
188                                     <type>xml</type>
189                                     <classifier>config</classifier>
190                                 </artifact>
191                             </artifacts>
192                         </configuration>
193                     </execution>
194                 </executions>
195             </plugin>
196             <plugin>
197                 <groupId>org.eclipse.xtend</groupId>
198                 <artifactId>xtend-maven-plugin</artifactId>
199             </plugin>
200         </plugins>
201     </build>
202 </project>