Drop Maven prerequisite
[netvirt.git] / openstack / net-virt-sfc / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015 Red Hat, Inc. and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0"
9          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   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>karaf-parent</artifactId>
14     <version>1.8.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.netvirt</groupId>
19   <artifactId>openstack.net-virt-sfc-karaf</artifactId>
20   <version>1.4.0-SNAPSHOT</version>
21   <name>${project.artifactId}</name>
22   <properties>
23     <karaf.localFeature>odl-ovsdb-sfc-test</karaf.localFeature>
24   </properties>
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>${project.groupId}</groupId>
29         <artifactId>openstack.net-virt-sfc-artifacts</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36   <dependencies>
37     <dependency>
38       <!-- scope is compile so all features (there is only one) are installed
39       into startup.properties and the feature repo itself is not installed -->
40       <groupId>org.apache.karaf.features</groupId>
41       <artifactId>framework</artifactId>
42       <type>kar</type>
43     </dependency>
44     <dependency>
45       <groupId>${project.groupId}</groupId>
46       <artifactId>openstack.net-virt-sfc-features</artifactId>
47       <version>${project.version}</version>
48       <classifier>features</classifier>
49       <type>xml</type>
50       <scope>runtime</scope>
51     </dependency>
52   </dependencies>
53   <!-- DO NOT install or deploy the karaf artifact -->
54   <build>
55     <plugins>
56       <plugin>
57         <groupId>org.apache.maven.plugins</groupId>
58         <artifactId>maven-deploy-plugin</artifactId>
59         <configuration>
60           <skip>true</skip>
61         </configuration>
62       </plugin>
63     </plugins>
64   </build>
65
66   <!--
67       Maven Site Configuration
68
69       The following configuration is necessary for maven-site-plugin to
70       correctly identify the correct deployment path for OpenDaylight Maven
71       sites.
72   -->
73   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
74
75   <distributionManagement>
76     <site>
77       <id>opendaylight-site</id>
78       <url>${nexus.site.url}/${project.artifactId}/</url>
79     </site>
80   </distributionManagement>
81 </project>