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