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