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