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