51519bc656218f946cbb39be407998f5a7414ed6
[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.1-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             <optional>true</optional>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.controller</groupId>
32             <artifactId>sal-binding-api</artifactId>
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>org.opendaylight.genius</groupId>
41             <artifactId>mdsalutil-api</artifactId>
42             <version>${genius.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.genius</groupId>
46             <artifactId>ipv6util-api</artifactId>
47             <version>${genius.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>elanmanager-api</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>ipv6service-api</artifactId>
57             <version>${project.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>neutronvpn-api</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.neutron</groupId>
66             <artifactId>model</artifactId>
67             <version>${neutron.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.openflowplugin.model</groupId>
71             <artifactId>model-flow-service</artifactId>
72             <version>${openflowplugin.version}</version>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.openflowplugin</groupId>
76             <artifactId>openflowplugin-api</artifactId>
77             <version>${openflowplugin.version}</version>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.ovsdb</groupId>
81             <artifactId>southbound-api</artifactId>
82             <version>${ovsdb.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.yangtools</groupId>
86             <artifactId>yang-common</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.slf4j</groupId>
90             <artifactId>slf4j-simple</artifactId>
91             <scope>test</scope>
92         </dependency>
93     </dependencies>
94
95     <build>
96         <plugins>
97             <plugin>
98                 <groupId>org.apache.aries.blueprint</groupId>
99                 <artifactId>blueprint-maven-plugin</artifactId>
100             </plugin>
101             <plugin>
102                 <groupId>org.apache.felix</groupId>
103                 <artifactId>maven-bundle-plugin</artifactId>
104                 <extensions>true</extensions>
105                 <configuration>
106                     <instructions>
107                         <!-- We purposely don't export any packages to avoid any dependencies
108                              on this bundle and prevent @Singleton annotated classes from being
109                              accidently included in another bundle's blueprint XML  -->
110                         <Export-Package/>
111                     </instructions>
112                 </configuration>
113             </plugin>
114         </plugins>
115     </build>
116 </project>