Drop Maven prerequisite
[netvirt.git] / openstack / sfc-translator / 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" 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">
9
10   <parent>
11     <groupId>org.opendaylight.odlparent</groupId>
12     <artifactId>odlparent-lite</artifactId>
13     <version>1.8.0-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <groupId>org.opendaylight.netvirt</groupId>
18   <artifactId>openstack.sfc-translator-aggregator</artifactId>
19   <version>1.4.0-SNAPSHOT</version>
20   <packaging>pom</packaging>
21   <modelVersion>4.0.0</modelVersion>
22   <modules>
23     <module>impl</module>
24     <module>karaf</module>
25     <module>features</module>
26     <module>artifacts</module>
27   </modules>
28   <properties>
29     <neutron.model.version>0.8.0-SNAPSHOT</neutron.model.version>
30   </properties>
31   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
32   <dependencies>
33     <dependency>
34       <groupId>org.opendaylight.neutron</groupId>
35       <artifactId>model</artifactId>
36       <version>${neutron.model.version}</version>
37     </dependency>
38   </dependencies>
39   <build>
40     <plugins>
41       <plugin>
42         <groupId>org.apache.maven.plugins</groupId>
43         <artifactId>maven-deploy-plugin</artifactId>
44         <configuration>
45           <skip>true</skip>
46         </configuration>
47       </plugin>
48       <plugin>
49         <groupId>org.apache.maven.plugins</groupId>
50         <artifactId>maven-install-plugin</artifactId>
51         <configuration>
52           <skip>true</skip>
53         </configuration>
54       </plugin>
55     </plugins>
56   </build>
57
58   <scm>
59     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
60     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
61     <tag>HEAD</tag>
62     <url>https://wiki.opendaylight.org/view/NetVirt</url>
63   </scm>
64
65   <!--
66       Maven Site Configuration
67
68       The following configuration is necessary for maven-site-plugin to
69       correctly identify the correct deployment path for OpenDaylight Maven
70       sites.
71   -->
72   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
73
74   <distributionManagement>
75     <site>
76       <id>opendaylight-site</id>
77       <url>${nexus.site.url}/${project.artifactId}/</url>
78     </site>
79   </distributionManagement>
80 </project>