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