Forbid manual transactions throughout
[netvirt.git] / vpnmanager / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 - 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>vpnmanager-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>org.opendaylight.controller</groupId>
27             <artifactId>sal-binding-broker-impl</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.genius</groupId>
31             <artifactId>alivenessmonitor-api</artifactId>
32             <version>${genius.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.genius</groupId>
36             <artifactId>arputil-api</artifactId>
37             <version>${genius.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.genius</groupId>
41             <artifactId>idmanager-api</artifactId>
42             <version>${genius.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.genius</groupId>
46             <artifactId>interfacemanager-api</artifactId>
47             <version>${genius.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.genius</groupId>
51             <artifactId>itm-api</artifactId>
52             <version>${genius.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.genius</groupId>
56             <artifactId>lockmanager-api</artifactId>
57             <version>${genius.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.genius</groupId>
61             <artifactId>mdsalutil-api</artifactId>
62             <version>${genius.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.infrautils</groupId>
66             <artifactId>counters-api</artifactId>
67             <version>${infrautils.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>bgpmanager-api</artifactId>
72             <version>${project.version}</version>
73         </dependency>
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>fibmanager-api</artifactId>
77             <version>${project.version}</version>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>natservice-api</artifactId>
82             <version>${project.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>${project.groupId}</groupId>
86             <artifactId>neutronvpn-api</artifactId>
87             <version>${project.version}</version>
88         </dependency>
89         <dependency>
90             <groupId>${project.groupId}</groupId>
91             <artifactId>vpnmanager-api</artifactId>
92             <version>${project.version}</version>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>elanmanager-api</artifactId>
97             <version>${project.version}</version>
98         </dependency>
99
100         <!-- Testing dependencies -->
101         <dependency>
102             <groupId>org.opendaylight.controller</groupId>
103             <artifactId>sal-binding-broker-impl</artifactId>
104             <scope>test</scope>
105             <type>test-jar</type>
106         </dependency>
107     </dependencies>
108
109     <build>
110         <plugins>
111             <plugin>
112                 <groupId>org.apache.aries.blueprint</groupId>
113                 <artifactId>blueprint-maven-plugin</artifactId>
114             </plugin>
115             <plugin>
116                 <groupId>org.apache.felix</groupId>
117                 <artifactId>maven-bundle-plugin</artifactId>
118                 <extensions>true</extensions>
119                 <configuration>
120                     <instructions>
121                         <!-- We purposely don't export any packages to avoid any dependencies
122                              on this bundle and prevent @Singleton annotated classes from being
123                              accidently included in another bundle's blueprint XML  -->
124                         <Export-Package/>
125                     </instructions>
126                 </configuration>
127             </plugin>
128             <plugin>
129                 <groupId>org.codehaus.mojo</groupId>
130                 <artifactId>build-helper-maven-plugin</artifactId>
131                 <executions>
132                     <execution>
133                         <id>attach-artifacts</id>
134                         <goals>
135                             <goal>attach-artifact</goal>
136                         </goals>
137                         <phase>package</phase>
138                         <configuration>
139                             <artifacts>
140                                 <artifact>
141                                     <file>${project.build.directory}/classes/initial/netvirt-vpnmanager-config.xml
142                                     </file>
143                                     <type>xml</type>
144                                     <classifier>config</classifier>
145                                 </artifact>
146                             </artifacts>
147                         </configuration>
148                     </execution>
149                 </executions>
150             </plugin>
151         </plugins>
152     </build>
153 </project>