f1098ba431dda22bb1846b164c1479aed24b46ed
[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.9.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             <version>${openflowplugin.version}</version>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.ovsdb</groupId>
99             <artifactId>hwvtepsouthbound-api</artifactId>
100             <version>${ovsdb.version}</version>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.serviceutils</groupId>
104             <artifactId>tools-api</artifactId>
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>