Bump odlparent 2.0.2 to 2.0.4
[netvirt.git] / vpnservice / distribution / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
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 INTERNAL
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   <parent>
11     <groupId>org.opendaylight.odlparent</groupId>
12     <artifactId>karaf4-parent</artifactId>
13     <version>2.0.4</version>
14     <relativePath/>
15   </parent>
16   <modelVersion>4.0.0</modelVersion>
17   <groupId>org.opendaylight.netvirt</groupId>
18   <artifactId>vpnservice-karaf</artifactId>
19   <version>0.5.0-SNAPSHOT</version>
20   <name>ODL :: netvirt :: ${project.artifactId}</name>
21   <properties>
22     <!-- <karaf.localFeature>odl-vpnservice-core</karaf.localFeature> -->
23   </properties>
24
25   <dependencies>
26     <dependency>
27       <!-- scope is compile so all features (there is only one) are installed
28       into startup.properties and the feature repo itself is not installed -->
29       <groupId>org.apache.karaf.features</groupId>
30       <artifactId>framework</artifactId>
31       <version>${karaf.version}</version>
32       <type>kar</type>
33       <scope>compile</scope>
34     </dependency>
35
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>vpnservice-features</artifactId>
39       <version>${project.version}</version>
40       <classifier>features</classifier>
41       <type>xml</type>
42       <scope>runtime</scope>
43     </dependency>
44   </dependencies>
45
46   <build>
47     <plugins>
48       <!-- Temporarily deploy the karaf artifact -->
49       <plugin>
50         <groupId>org.apache.maven.plugins</groupId>
51         <artifactId>maven-deploy-plugin</artifactId>
52         <configuration>
53           <skip>false</skip>
54         </configuration>
55       </plugin>
56     </plugins>
57   </build>
58
59   <!--
60       Maven Site Configuration
61
62       The following configuration is necessary for maven-site-plugin to
63       correctly identify the correct deployment path for OpenDaylight Maven
64       sites.
65   -->
66   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
67
68   <distributionManagement>
69     <site>
70       <id>opendaylight-site</id>
71       <url>${nexus.site.url}/${project.artifactId}/</url>
72     </site>
73   </distributionManagement>
74 </project>