Bump versions by 0.1.0 for next dev cycle
[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   <prerequisites>
23     <maven>3.1.1</maven>
24   </prerequisites>
25   <modules>
26     <module>impl</module>
27     <module>karaf</module>
28     <module>features</module>
29     <module>artifacts</module>
30   </modules>
31   <properties>
32     <neutron.model.version>0.8.0-SNAPSHOT</neutron.model.version>
33   </properties>
34   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
35   <dependencies>
36     <dependency>
37       <groupId>org.opendaylight.neutron</groupId>
38       <artifactId>model</artifactId>
39       <version>${neutron.model.version}</version>
40     </dependency>
41   </dependencies>
42   <build>
43     <plugins>
44       <plugin>
45         <groupId>org.apache.maven.plugins</groupId>
46         <artifactId>maven-deploy-plugin</artifactId>
47         <configuration>
48           <skip>true</skip>
49         </configuration>
50       </plugin>
51       <plugin>
52         <groupId>org.apache.maven.plugins</groupId>
53         <artifactId>maven-install-plugin</artifactId>
54         <configuration>
55           <skip>true</skip>
56         </configuration>
57       </plugin>
58     </plugins>
59   </build>
60
61   <scm>
62     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
63     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
64     <tag>HEAD</tag>
65     <url>https://wiki.opendaylight.org/view/NetVirt</url>
66   </scm>
67
68   <!--
69       Maven Site Configuration
70
71       The following configuration is necessary for maven-site-plugin to
72       correctly identify the correct deployment path for OpenDaylight Maven
73       sites.
74   -->
75   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
76
77   <distributionManagement>
78     <site>
79       <id>opendaylight-site</id>
80       <url>${nexus.site.url}/${project.artifactId}/</url>
81     </site>
82   </distributionManagement>
83 </project>