Cleanup version properties
[netvirt.git] / vpnservice / natservice / natservice-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11   <parent>
12     <groupId>org.opendaylight.netvirt</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.5.0-SNAPSHOT</version>
15     <relativePath>../../commons/config-parent</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <artifactId>natservice-impl</artifactId>
20   <name>ODL :: netvirt :: ${project.artifactId}</name>
21   <packaging>bundle</packaging>
22   <dependencies>
23     <dependency>
24       <groupId>${project.groupId}</groupId>
25       <artifactId>natservice-api</artifactId>
26       <version>${project.version}</version>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.genius</groupId>
30       <artifactId>arputil-api</artifactId>
31       <version>${genius.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.genius</groupId>
35       <artifactId>mdsalutil-api</artifactId>
36       <version>${genius.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.genius</groupId>
40       <artifactId>itm-api</artifactId>
41       <version>${genius.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>bgpmanager-api</artifactId>
46       <version>${project.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>${project.groupId}</groupId>
50       <artifactId>vpnmanager-api</artifactId>
51       <version>${project.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>${project.groupId}</groupId>
55       <artifactId>fibmanager-api</artifactId>
56       <version>${project.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.genius</groupId>
60       <artifactId>idmanager-api</artifactId>
61       <version>${genius.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.genius</groupId>
65       <artifactId>interfacemanager-api</artifactId>
66       <version>${genius.version}</version>
67     </dependency>
68     <dependency>
69       <groupId>${project.groupId}</groupId>
70       <artifactId>neutronvpn-api</artifactId>
71       <version>${project.version}</version>
72     </dependency>
73     <dependency>
74       <groupId>${project.groupId}</groupId>
75       <artifactId>elanmanager-api</artifactId>
76       <version>${project.version}</version>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.openflowplugin.model</groupId>
80       <artifactId>model-flow-service</artifactId>
81       <version>${openflowplugin.version}</version>
82     </dependency>
83     <dependency>
84         <groupId>org.opendaylight.controller</groupId>
85         <artifactId>sal-binding-broker-impl</artifactId>
86     </dependency>
87     <dependency>
88         <groupId>commons-net</groupId>
89         <artifactId>commons-net</artifactId>
90     </dependency>
91     <dependency>
92         <groupId>org.powermock</groupId>
93         <artifactId>powermock-api-mockito</artifactId>
94         <scope>test</scope>
95     </dependency>
96     <dependency>
97         <groupId>org.powermock</groupId>
98         <artifactId>powermock-module-junit4</artifactId>
99         <scope>test</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.infrautils</groupId>
103       <artifactId>counters-api</artifactId>
104       <version>${infrautils.version}</version>
105     </dependency>
106       <dependency>
107         <groupId>javax.inject</groupId>
108         <artifactId>javax.inject</artifactId>
109       </dependency>
110   </dependencies>
111
112   <build>
113     <plugins>
114       <plugin>
115         <groupId>org.apache.felix</groupId>
116         <artifactId>maven-bundle-plugin</artifactId>
117         <extensions>true</extensions>
118         <configuration>
119           <instructions>
120             <!-- This bundle works with Karaf 3 and 4.0 -->
121             <Import-Package>
122               org.apache.karaf.shell.commands;version="[3.0.0,4.1)",
123               org.apache.karaf.shell.console;version="[3.0.0,4.1)",
124               *
125             </Import-Package>
126           </instructions>
127         </configuration>
128       </plugin>
129       <plugin>
130         <groupId>org.apache.aries.blueprint</groupId>
131         <artifactId>blueprint-maven-plugin</artifactId>
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-natservice-config.xml</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
158     <!--
159         Maven Site Configuration
160
161         The following configuration is necessary for maven-site-plugin to
162         correctly identify the correct deployment path for OpenDaylight Maven
163         sites.
164     -->
165     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
166
167     <distributionManagement>
168         <site>
169             <id>opendaylight-site</id>
170             <url>${nexus.site.url}/${project.artifactId}/</url>
171         </site>
172     </distributionManagement>
173 </project>