Bump versions by 0.1.0 for next dev cycle
[netvirt.git] / openstack / ovsdb-ui / bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Inocybe Technologies, 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
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     <modelVersion>4.0.0</modelVersion>
11     <parent>
12       <groupId>org.opendaylight.odlparent</groupId>
13       <artifactId>odlparent-lite</artifactId>
14       <version>1.8.0-SNAPSHOT</version>
15       <relativePath/>
16     </parent>
17
18     <groupId>org.opendaylight.netvirt</groupId>
19     <artifactId>ovsdb-ui-bundle</artifactId>
20     <version>1.4.0-SNAPSHOT</version>
21     <packaging>bundle</packaging>
22     <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
23     <licenses>
24         <license>
25             <name>Eclipse Public License v1.0</name>
26             <url>http://www.eclipse.org/legal/epl-v10.html</url>
27         </license>
28     </licenses>
29     <scm>
30         <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
31         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
32         <tag>HEAD</tag>
33         <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
34     </scm>
35
36     <properties>
37       <dlux.version>0.5.0-SNAPSHOT</dlux.version>
38     </properties>
39
40     <dependencies>
41       <dependency>
42         <groupId>org.opendaylight.dlux</groupId>
43           <artifactId>loader</artifactId>
44           <version>${dlux.version}</version>
45         </dependency>
46         <dependency>
47           <groupId>org.opendaylight.netvirt</groupId>
48           <artifactId>ovsdb-ui-module</artifactId>
49           <version>${project.version}</version>
50           <scope>provided</scope>
51         </dependency>
52     </dependencies>
53     <build>
54         <resources>
55           <resource>
56             <directory>target/generated-resources</directory>
57           </resource>
58           <resource>
59             <directory>src/main/resources</directory>
60          </resource>
61         </resources>
62         <plugins>
63           <plugin>
64             <groupId>org.apache.maven.plugins</groupId>
65             <artifactId>maven-dependency-plugin</artifactId>
66             <executions>
67               <execution>
68                 <id>unpack-loader-resources</id>
69                 <goals>
70                   <goal>unpack</goal>
71                 </goals>
72                 <phase>generate-resources</phase>
73                 <configuration>
74                <artifactItems>
75                    <artifactItem>
76                       <groupId>org.opendaylight.netvirt</groupId>
77                       <artifactId>ovsdb-ui-module</artifactId>
78                       <version>${project.version}</version>
79                       <overWrite>true</overWrite>
80                       <outputDirectory>${project.build.directory}/generated-resources</outputDirectory>
81                     </artifactItem>
82                   </artifactItems>
83                   <excludes>META-INF\/**, ovsdb\/spec\/**, ovsdb\/mocks\/**</excludes>
84                   <ignorePermissions>false</ignorePermissions>
85                 </configuration>
86               </execution>
87             </executions>
88           </plugin>
89             <plugin>
90                 <groupId>org.apache.felix</groupId>
91                 <artifactId>maven-bundle-plugin</artifactId>
92                 <extensions>true</extensions>
93                 <configuration>
94                     <instructions>
95                         <Import-Package>org.osgi.service.http,
96                                         org.osgi.framework;version="1.0.0",
97                                         org.opendaylight.dlux.loader,
98                                         org.slf4j
99                         </Import-Package>
100                     <Export-Package></Export-Package>
101                     </instructions>
102                 </configuration>
103             </plugin>
104         </plugins>
105     </build>
106
107     <!--
108         Maven Site Configuration
109
110         The following configuration is necessary for maven-site-plugin to
111         correctly identify the correct deployment path for OpenDaylight Maven
112         sites.
113     -->
114     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
115
116     <distributionManagement>
117         <site>
118             <id>opendaylight-site</id>
119             <url>${nexus.site.url}/${project.artifactId}/</url>
120         </site>
121     </distributionManagement>
122 </project>