Integrate controller-2.0.1
[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.genius</groupId>
36             <artifactId>mdsalutil-api</artifactId>
37             <version>${genius.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.genius</groupId>
41             <artifactId>interfacemanager-api</artifactId>
42             <version>${genius.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>elanmanager-api</artifactId>
47             <version>${project.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.genius</groupId>
51             <artifactId>idmanager-api</artifactId>
52             <version>${genius.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.serviceutils</groupId>
56             <artifactId>srm-api</artifactId>
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>org.opendaylight.infrautils</groupId>
65             <artifactId>jobcoordinator-impl</artifactId>
66             <version>${infrautils.version}</version>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>com.googlecode.java-ipv6</groupId>
71             <artifactId>java-ipv6</artifactId>
72             <version>0.16</version>
73         </dependency>
74         <dependency>
75             <groupId>org.apache.karaf.shell</groupId>
76             <artifactId>org.apache.karaf.shell.console</artifactId>
77             <scope>provided</scope>
78         </dependency>
79
80         <!-- Dependencies used only by code under src/test (<scope>test) -->
81         <dependency>
82             <groupId>org.opendaylight.infrautils</groupId>
83             <artifactId>infrautils-testutils</artifactId>
84             <version>${infrautils.version}</version>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.infrautils</groupId>
89             <artifactId>inject.guice.testutils</artifactId>
90             <version>${infrautils.version}</version>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.genius</groupId>
95             <artifactId>mdsalutil-api</artifactId>
96             <version>${genius.version}</version>
97             <type>test-jar</type>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.genius</groupId>
102             <artifactId>mdsalutil-testutils</artifactId>
103             <version>${genius.version}</version>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.genius</groupId>
108             <artifactId>testutils</artifactId>
109             <version>${genius.version}</version>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.genius</groupId>
114             <artifactId>interfacemanager-impl</artifactId>
115             <version>${genius.version}</version>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.yangtools</groupId>
120             <artifactId>testutils</artifactId>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.mdsal</groupId>
125             <artifactId>mdsal-binding-test-utils</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>org.immutables</groupId>
129             <artifactId>value</artifactId>
130             <classifier>annotations</classifier>
131             <scope>test</scope>
132         </dependency>
133         <dependency>
134             <groupId>com.google.truth</groupId>
135             <artifactId>truth</artifactId>
136             <scope>test</scope>
137         </dependency>
138     </dependencies>
139
140     <build>
141         <plugins>
142             <plugin>
143                 <groupId>org.apache.aries.blueprint</groupId>
144                 <artifactId>blueprint-maven-plugin</artifactId>
145             </plugin>
146             <plugin>
147                 <groupId>org.apache.felix</groupId>
148                 <artifactId>maven-bundle-plugin</artifactId>
149                 <extensions>true</extensions>
150                 <configuration>
151                     <instructions>
152                         <!-- We purposely don't export any packages to avoid any dependencies
153                              on this bundle and prevent @Singleton annotated classes from being
154                              accidently included in another bundle's blueprint XML  -->
155                         <Export-Package/>
156                     </instructions>
157                 </configuration>
158             </plugin>
159             <plugin>
160                 <groupId>org.codehaus.mojo</groupId>
161                 <artifactId>build-helper-maven-plugin</artifactId>
162                 <executions>
163                     <execution>
164                         <id>attach-artifacts</id>
165                         <goals>
166                             <goal>attach-artifact</goal>
167                         </goals>
168                         <phase>package</phase>
169                         <configuration>
170                             <artifacts>
171                                 <artifact>
172                                     <file>${project.build.directory}/classes/initial/netvirt-aclservice-config.xml
173                                     </file>
174                                     <type>xml</type>
175                                     <classifier>config</classifier>
176                                 </artifact>
177                             </artifacts>
178                         </configuration>
179                     </execution>
180                 </executions>
181             </plugin>
182             <plugin>
183                 <groupId>org.eclipse.xtend</groupId>
184                 <artifactId>xtend-maven-plugin</artifactId>
185             </plugin>
186         </plugins>
187     </build>
188 </project>