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