0ff4c115bf27c8a1efe94f85cde4e5c7d4612ad6
[netvirt.git] / ipv6service / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=2 tabstop=2: --><!--
3 Copyright (c) 2016 Red Hat, Inc. 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"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.netvirt</groupId>
14         <artifactId>binding-parent</artifactId>
15         <version>0.9.0-SNAPSHOT</version>
16         <relativePath>../../commons/binding-parent</relativePath>
17     </parent>
18
19     <artifactId>ipv6service-impl</artifactId>
20     <name>ODL :: netvirt :: ${project.artifactId}</name>
21     <packaging>bundle</packaging>
22     <modelVersion>4.0.0</modelVersion>
23
24     <dependencies>
25         <dependency>
26             <groupId>javax.inject</groupId>
27             <artifactId>javax.inject</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.controller</groupId>
31             <artifactId>sal-binding-api</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.genius</groupId>
35             <artifactId>interfacemanager-api</artifactId>
36             <version>${genius.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.genius</groupId>
40             <artifactId>mdsalutil-api</artifactId>
41             <version>${genius.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.genius</groupId>
45             <artifactId>ipv6util-api</artifactId>
46             <version>${genius.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>elanmanager-api</artifactId>
51             <version>${project.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>ipv6service-api</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>neutronvpn-api</artifactId>
61             <version>${project.version}</version>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.neutron</groupId>
65             <artifactId>model</artifactId>
66             <version>${neutron.version}</version>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.openflowplugin.model</groupId>
70             <artifactId>model-flow-service</artifactId>
71             <version>${openflowplugin.version}</version>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.openflowplugin</groupId>
75             <artifactId>openflowplugin-api</artifactId>
76             <version>${openflowplugin.version}</version>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.ovsdb</groupId>
80             <artifactId>southbound-api</artifactId>
81             <version>${ovsdb.version}</version>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.yangtools</groupId>
85             <artifactId>yang-common</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.powermock</groupId>
89             <artifactId>powermock-api-mockito</artifactId>
90             <version>1.6.4</version>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.javassist</groupId>
95             <artifactId>javassist</artifactId>
96             <version>3.21.0-GA</version>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.mockito</groupId>
101             <artifactId>mockito-core</artifactId>
102             <version>1.10.19</version>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.powermock</groupId>
107             <artifactId>powermock-module-junit4</artifactId>
108             <version>1.6.4</version>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.powermock</groupId>
113             <artifactId>powermock-api-support</artifactId>
114             <version>1.6.4</version>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.powermock</groupId>
119             <artifactId>powermock-reflect</artifactId>
120             <version>1.6.4</version>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.powermock</groupId>
125             <artifactId>powermock-core</artifactId>
126             <version>1.6.4</version>
127             <scope>test</scope>
128         </dependency>
129         <dependency>
130             <groupId>org.slf4j</groupId>
131             <artifactId>slf4j-simple</artifactId>
132             <scope>test</scope>
133         </dependency>
134     </dependencies>
135
136     <build>
137         <plugins>
138             <plugin>
139                 <groupId>org.apache.aries.blueprint</groupId>
140                 <artifactId>blueprint-maven-plugin</artifactId>
141             </plugin>
142             <plugin>
143                 <groupId>org.apache.felix</groupId>
144                 <artifactId>maven-bundle-plugin</artifactId>
145                 <extensions>true</extensions>
146                 <configuration>
147                     <instructions>
148                         <!-- We purposely don't export any packages to avoid any dependencies
149                              on this bundle and prevent @Singleton annotated classes from being
150                              accidently included in another bundle's blueprint XML  -->
151                         <Export-Package/>
152                     </instructions>
153                 </configuration>
154             </plugin>
155         </plugins>
156     </build>
157 </project>