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