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