MRI version bumpup for Aluminium
[netvirt.git] / natservice / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2016 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>natservice-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>org.osgi</groupId>
27             <artifactId>org.osgi.core</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>commons-net</groupId>
31             <artifactId>commons-net</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>javax.inject</groupId>
35             <artifactId>javax.inject</artifactId>
36             <scope>provided</scope>
37             <optional>true</optional>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.controller</groupId>
41             <artifactId>sal-common-util</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.mdsal</groupId>
45             <artifactId>mdsal-binding-dom-adapter</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.apache.karaf.shell</groupId>
49             <artifactId>org.apache.karaf.shell.commands</artifactId>
50             <scope>provided</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.apache.karaf.shell</groupId>
54             <artifactId>org.apache.karaf.shell.console</artifactId>
55             <scope>provided</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.genius</groupId>
59             <artifactId>arputil-api</artifactId>
60             <version>${genius.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.serviceutils</groupId>
64             <artifactId>tools-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.serviceutils</groupId>
68             <artifactId>upgrade</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.genius</groupId>
72             <artifactId>idmanager-api</artifactId>
73             <version>${genius.version}</version>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.genius</groupId>
77             <artifactId>interfacemanager-api</artifactId>
78             <version>${genius.version}</version>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.genius</groupId>
82             <artifactId>itm-api</artifactId>
83             <version>${genius.version}</version>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.genius</groupId>
87             <artifactId>mdsalutil-api</artifactId>
88             <version>${genius.version}</version>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.genius</groupId>
92             <artifactId>networkutils</artifactId>
93             <version>${genius.version}</version>
94         </dependency>
95         <dependency>
96             <groupId>${project.groupId}</groupId>
97             <artifactId>bgpmanager-api</artifactId>
98             <version>${project.version}</version>
99         </dependency>
100         <dependency>
101             <groupId>${project.groupId}</groupId>
102             <artifactId>elanmanager-api</artifactId>
103             <version>${project.version}</version>
104         </dependency>
105         <dependency>
106             <groupId>${project.groupId}</groupId>
107             <artifactId>fibmanager-api</artifactId>
108             <version>${project.version}</version>
109         </dependency>
110         <dependency>
111             <groupId>${project.groupId}</groupId>
112             <artifactId>natservice-api</artifactId>
113             <version>${project.version}</version>
114         </dependency>
115         <dependency>
116             <groupId>${project.groupId}</groupId>
117             <artifactId>neutronvpn-api</artifactId>
118             <version>${project.version}</version>
119         </dependency>
120         <dependency>
121             <groupId>${project.groupId}</groupId>
122             <artifactId>vpnmanager-api</artifactId>
123             <version>${project.version}</version>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.genius</groupId>
127             <artifactId>cloudscaler-api</artifactId>
128             <version>${genius.version}</version>
129         </dependency>
130         <dependency>
131             <groupId>org.opendaylight.openflowplugin.model</groupId>
132             <artifactId>model-flow-service</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>com.google.code.findbugs</groupId>
136             <artifactId>jsr305</artifactId>
137             <version>3.0.2</version>
138             <optional>true</optional>
139         </dependency>
140     </dependencies>
141
142     <build>
143         <plugins>
144             <plugin>
145                 <groupId>org.apache.aries.blueprint</groupId>
146                 <artifactId>blueprint-maven-plugin</artifactId>
147             </plugin>
148             <plugin>
149                 <groupId>org.apache.felix</groupId>
150                 <artifactId>maven-bundle-plugin</artifactId>
151                 <extensions>true</extensions>
152                 <configuration>
153                     <instructions>
154                         <!-- We purposely don't export any packages to avoid any dependencies
155                              on this bundle and prevent @Singleton annotated classes from being
156                              accidently included in another bundle's blueprint XML  -->
157                         <Export-Package/>
158                     </instructions>
159                 </configuration>
160             </plugin>
161             <plugin>
162                 <groupId>org.codehaus.mojo</groupId>
163                 <artifactId>build-helper-maven-plugin</artifactId>
164                 <executions>
165                     <execution>
166                         <id>attach-artifacts</id>
167                         <goals>
168                             <goal>attach-artifact</goal>
169                         </goals>
170                         <phase>package</phase>
171                         <configuration>
172                             <artifacts>
173                                 <artifact>
174                                     <file>${project.build.directory}/classes/initial/netvirt-natservice-config.xml
175                                     </file>
176                                     <type>xml</type>
177                                     <classifier>config</classifier>
178                                 </artifact>
179                             </artifacts>
180                         </configuration>
181                     </execution>
182                 </executions>
183             </plugin>
184         </plugins>
185     </build>
186 </project>