Drop Maven prerequisite
[netvirt.git] / openstack / netvirt2 / renderers / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 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 --><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">
8
9   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>odlparent-lite</artifactId>
12     <version>1.8.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15
16   <groupId>org.opendaylight.netvirt</groupId>
17   <artifactId>renderers-aggregator</artifactId>
18   <version>1.4.0-SNAPSHOT</version>
19   <name>renderers</name>
20   <packaging>pom</packaging>
21   <modelVersion>4.0.0</modelVersion>
22   <modules>
23     <module>hwgw</module>
24     <module>neutron</module>
25   </modules>
26
27   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
28   <build>
29     <plugins>
30       <plugin>
31         <groupId>org.apache.maven.plugins</groupId>
32         <artifactId>maven-deploy-plugin</artifactId>
33         <configuration>
34           <skip>true</skip>
35         </configuration>
36       </plugin>
37       <plugin>
38         <groupId>org.apache.maven.plugins</groupId>
39         <artifactId>maven-install-plugin</artifactId>
40         <configuration>
41           <skip>true</skip>
42         </configuration>
43       </plugin>
44     </plugins>
45   </build>
46
47   <scm>
48     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
49     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
50     <tag>HEAD</tag>
51     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
52   </scm>
53
54   <!--
55       Maven Site Configuration
56
57       The following configuration is necessary for maven-site-plugin to
58       correctly identify the correct deployment path for OpenDaylight Maven
59       sites.
60   -->
61   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
62
63   <distributionManagement>
64     <site>
65       <id>opendaylight-site</id>
66       <url>${nexus.site.url}/${project.artifactId}/</url>
67     </site>
68   </distributionManagement>
69 </project>