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